The current documentation for pywikibot.Site.logevents() is ambiguous about how the start, end, and reverse parameters work.
According to the [[ https://www.mediawiki.org/wiki/API:Logevents | MediaWiki API:Logevents ]] documentation:
- **start :** “The timestamp to start enumerating from.”
- **end :** “The timestamp to stop enumerating at.”
- **reverse :** “List oldest first. Note that the meaning of the 'start' and 'end' parameters is reversed when this is enabled.”
However, [[ https://doc.wikimedia.org/pywikibot/stable/_modules/pywikibot/page/_user.html#User.logevents | Pywikibot’s current docstring ]] implies that start and end act like “after” and “before,” which can lead to confusion when users iterate through logs or check block events.
**Solution**
This task proposes updating the docstring to match the MediaWiki API wording exactly.
Proposed docstring update:
```
start : Timestamp, optional
The timestamp to start enumerating from.
end : Timestamp, optional
The timestamp to end enumerating at.
reverse : bool, optional
If True, list oldest first and reverse the meaning of 'start' and 'end'.
```