(*a, **kw)
| 975 | |
| 976 | @public |
| 977 | def get_recent_changes(*a, **kw): |
| 978 | if "offset" in kw and kw["offset"] > 5000: |
| 979 | return [] |
| 980 | else: |
| 981 | return _get_recentchanges(*a, **kw) |
| 982 | |
| 983 | |
| 984 | local_ip = None |
nothing calls this directly
no outgoing calls
no test coverage detected