Victor Stinner

Results 702 comments of Victor Stinner

On Linux, converting IsADirectoryError to ZoneInfoNotFoundError is easy. But on Windows, I don't think that converting any PermissionError into a ZoneInfoNotFoundError is a good idea. Maybe if PermissionError happens, we...

Oh, I dislike Roundup UI. I didn't notice that a PR was submitted: [PR 21839](https://github.com/python/cpython/pull/21839) (now closed).

> IsADirectoryError has been fixed, now just the windows specific case of PermissionError remains. We should not catch it outright, but maybe we could check if the error is for...

Since this issue is a bug in `PythonCall.jl`, can we close this issue?

Le 01/11/2011 00:07, Roundup Robot a écrit : > > Roundup Robot\ added the comment: > > New changeset 3f025427f02b by Florent Xicluna in branch 'default': > Fix regression due...

Did your commit fix the issue or not?

Since the changeset 55a3b563f0dbed04af317f632f7f3c0f6abe175b, test_strptime is failing on "AMD64 Gentoo Wide 3.x" buildbot: \====================================================================== FAIL: test_strptime (test.test_time.TimeTestCase) \---------------------------------------------------------------------- ```pytb Traceback (most recent call last): File "/home/buildbot/buildarea/3.x.ochtman-gentoo-amd64/build/Lib/test/test_time.py", line 159, in test_strptime...

About Elena Oat's patch bpo-13305.diff: I'm not sure that strftime("%4Y") works on all platforms, so I enabled the test on strftime("%4Y"). I will check our buildbots.

acucci's patch doc.patch suggests to use format "%4Y". Problem: I tried it on Linux, and it looks like it doesn't work. ```pycon >>> datetime.datetime.strptime("1980", "%Y") datetime.datetime(1980, 1, 1, 0, 0)...

>\> About Elena Oat's patch bpo-13305.diff: I'm not sure that >\> strftime("%4Y") works on all platforms > It doesn't, that's what the patch is trying to document. Oh. I confirm:...