Daniel Carpenter
Daniel Carpenter
Thank you for the explanation. This means if I want to reliably check my local time, I might write: ```python import ntplib def is_local_time_accurate(): client = ntplib.NTPClient() try: response =...
I disagree. Over the next 14 years, more and more computers with drifting real-time-clocks or software bugs will think it's 2036 (or later). I only started looking at this library...
I've encountered a similar issue with my company, and I think I've worked out the cause. Here's a minimal reproduction: https://github.com/dansebcar/vue-router-2042 TL;DR: looks like setting scrollBehaviour() in the VueRouter constructor...
The [current documentation](https://dateutil.readthedocs.io/en/stable/parser.html) on the subject is misleading. The [first reference](https://www.cl.cam.ac.uk/~mgk25/iso-time.html#zone) says UTC offsets east of the zero meridian are positive, and west of the zero meridian are negative. Is...
I also think a method to find the metadata for an imported package would be useful. I was using `metadata.version(__package__)` until I realised that it returns the wrong answer in...
Yes, I installed 23.10-1~bpo12+1 and I still receive the ``.
please review. Looks like there are no tests for `strports.listen`. Do I need to write one?
I don't understand your point about guiding people away from it. The function is documented as a thin wrapper over `serverFromString`. What's wrong with that? I'm not using twisted directly,...
I was referring to [this documentation](https://docs.twisted.org/en/stable/api/twisted.application.strports.html), which I found while deciphering the buildbot error traceback. Thanks for explaining the problem with the API, I agree. Does the deprecation need to...
Thank you both for your points. If you don't accept the PR as-is, please at least change [the documentation](https://docs.twisted.org/en/stable/api/twisted.application.strports.html). It's misleading to say: > The description of the listening port,...