[issue42094] isoformat() / fromisoformat() for datetime.timedelta

2020-10-20 Thread Erik Cederstrand
New submission from Erik Cederstrand : Python 3.7 gained support for parsing ISO 8601 formatted time, date and datetime strings via the fromisoformat() methods. Python has seen improved support for ISO 8601 in general; ISO calendar format codes were added in Python 3.6, and fromisocalendar()

[issue42096] zipfile.is_zipfile incorrectly identifying a gzipped file as a zip archive

2020-10-20 Thread Alex Roussel
New submission from Alex Roussel : Hello, I've come across an issue that seems similar to the false positives problem outlined in this ticket (https://bugs.python.org/issue28494), however this issue relates to a single gzipped json file which is incorrectly identified as a .zip archive

[issue41471] After installing python 3.x on Mac pip doesn't work at all

2020-10-20 Thread Ronald Oussoren
Change by Ronald Oussoren : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41471] After installing python 3.x on Mac pip doesn't work at all

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset aa7b03b31bf09b21a012b24e21977538e66b0172 by Miss Skeleton (bot) in branch '3.9': bpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (GH-22762) (GH-22773)

[issue41471] After installing python 3.x on Mac pip doesn't work at all

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset e7c5a43984f82ef9634cb0b2b8c4750b2fd431a0 by Miss Skeleton (bot) in branch '3.8': bpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (GH-22762) (GH-22774)

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +21765 pull_request: https://github.com/python/cpython/pull/22807 ___ Python tracker ___

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset 3185267400be853404f22a1e06bb9fe1210735c7 by Ronald Oussoren in branch 'master': bpo-41491: plistlib: accept hexadecimal integer values in xml plist files (GH-22764)

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +21764 pull_request: https://github.com/python/cpython/pull/22806 ___ Python tracker

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Definitely. Sorry for the delay -- I missed the notification here. -- ___ Python tracker ___ ___

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Also note that the capsule generally needs to hold references to the objects in exposes, and not rely on the module object to keep things alive. (Module objects with multi-phase init are not unique nor immortal.) _ctypes is an exception, since it doesn't have

[issue42095] plistlib: Add tests that compare with plutil(1)

2020-10-20 Thread Ronald Oussoren
New submission from Ronald Oussoren : plistlib is a library that reads and writes files that should be compatible with Apple tooling/libraries. Add some tests that verify interop (when ran on macOS): - Generate plist files with plistlib and parse with plutil - Generate plist files with plutil

[issue42094] isoformat() / fromisoformat() for datetime.timedelta

2020-10-20 Thread Erik Cederstrand
Erik Cederstrand added the comment: Among other things, ISO 8601 duration strings are commonly used to communicate offset values in timezone definitions. -- ___ Python tracker

[issue35608] python3 multiprocessing queue deadlock when use thread and process at same time

2020-10-20 Thread ruozeng.w
ruozeng.w added the comment: I ran into the same issue. I'm using Ansible to deliver thousands of remote tasks. One TaskQueueManager starts multiple worker processes, each worker process executes a remote task and send task result data to TaskQueueManager through MultiProcessing.Queue, so

[issue31818] [macOS] _scproxy.get_proxies() crash -- get_proxies() is not fork-safe?

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: > My understanding is that this is specifically a problem with the Objective-C > runtime that _scproxy.c accesses. The runtime is not thread safe and > whereas in earlier versions of macOS, it silently failed, now macOS is > explicitly aborting the

[issue42035] [C API] PyType_GetSlot cannot get tp_name

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Ah, scratch that: PyType_GetSlot returns a function pointer. To be correct, we should to expose a new function like PyType_GetName. It's true that CPython currently doesn't always honor the distinction between data and function pointers, but the C standard

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset d1eb75585ef4c108732ec815cdc0adef087b1c3e by Miss Skeleton (bot) in branch '3.8': bpo-41491: plistlib: accept hexadecimal integer values in xml plist files (GH-22764) (GH-22807)

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Ronald Oussoren
Change by Ronald Oussoren : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: New changeset 3fc7080220b8dd2e1b067b3224879133d895ea80 by Miss Skeleton (bot) in branch '3.9': bpo-41491: plistlib: accept hexadecimal integer values in xml plist files (GH-22764) (GH-22806)

[issue42095] plistlib: Add tests that compare with plutil(1)

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: Also: - Tests that verify plutil behaviour (such #41491, #42051, #40381) -- ___ Python tracker ___

[issue42035] [C API] PyType_GetSlot cannot get tp_name

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: The slots are originally intended for defining types (PyType_FromSpec); PyType_GetSlot is not as useful as it could be. tp_name can be exposed, but it needs to also be handled properly PyType_FromSpec -- e.g. raise an error. --

[issue42095] plistlib: Add tests that compare with plutil(1)

2020-10-20 Thread Ronald Oussoren
Change by Ronald Oussoren : -- keywords: +patch pull_requests: +21763 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/22764 ___ Python tracker

[issue42094] isoformat() / fromisoformat() for datetime.timedelta

2020-10-20 Thread Martin Panter
Martin Panter added the comment: There is related discussion in Issue 41254, about duration formats more generally. -- nosy: +martin.panter ___ Python tracker ___

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +21766 pull_request: https://github.com/python/cpython/pull/22808 ___ Python tracker

[issue38787] PEP 573: Module State Access from C Extension Methods

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Thanks Victor, Hai Shi, Pablo, Stefan, Dong-hee Na and Mariatta for reviews! I did not put all the details in the documentation because there are still feature gaps. So, a full write-up is now in the informational PEP 630. -- resolution: -> fixed

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Does plutil support octal (0o) and binary (0b) literals? -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue41618] [C API] How many slots of static types should be exposed in PyType_GetSlot()

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Also: PyType_GetSlot should return a function pointer, not data. For some slots (Py_tp_doc, Py_tp_methods, Py_tp_members, Py_tp_getset) that ship has sailed, but for new ones, we should honor the distinction between data and function pointers. The C standard

[issue34067] Problem with contextlib.nullcontext

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34067] Problem with contextlib.nullcontext

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +21767 pull_request: https://github.com/python/cpython/pull/22811 ___ Python tracker ___

[issue32902] FileInput "inplace" redirects output of other threads

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-10-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: It doesn't, both 0b101 and 0o101 get rejected as syntax errors. -- ___ Python tracker ___ ___

[issue21257] Document parse_headers function of http.client

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +21769 pull_request: https://github.com/python/cpython/pull/22813 ___ Python tracker ___

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +21768 pull_request: https://github.com/python/cpython/pull/22812 ___ Python tracker

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread Steve Dower
Steve Dower added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread Steve Dower
Steve Dower added the comment: New changeset ff1ae3dd334faa2006394c2318db385cdc42030a by Zackery Spytz in branch 'master': bpo-30612: Tweak Windows registry path syntax in the docs (GH-20281) https://github.com/python/cpython/commit/ff1ae3dd334faa2006394c2318db385cdc42030a --

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread Steve Dower
Change by Steve Dower : -- nosy: -miss-islington resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +21771 pull_request: https://github.com/python/cpython/pull/22815 ___ Python tracker

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington pull_requests: +21772 pull_request: https://github.com/python/cpython/pull/22816 ___ Python tracker ___

[issue20119] pdb c(ont(inue)) optional one-time-only breakpoint (like perl debugger)

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue34514] assertEqual doesn't use maxDiff when comparing dictionaries

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread Steve Dower
Steve Dower added the comment: New changeset f2312037e3a974d26ed3e23884f94c6af111a27a by TIGirardi in branch 'master': bpo-38324: Fix test__locale.py Windows failures (GH-20529) https://github.com/python/cpython/commit/f2312037e3a974d26ed3e23884f94c6af111a27a --

[issue40703] PyType_FromSpec*() overwrites the type's "__module__"

2020-10-20 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: fixed -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread miss-islington
miss-islington added the comment: New changeset c17ff5cad2952d9abd63aeae060cae5658257b0c by Miss Skeleton (bot) in branch '3.9': bpo-38324: Fix test__locale.py Windows failures (GH-20529) https://github.com/python/cpython/commit/c17ff5cad2952d9abd63aeae060cae5658257b0c --

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread miss-islington
miss-islington added the comment: New changeset f53ea8adaecacfe8c1e4a093136fb5318b15d779 by Miss Skeleton (bot) in branch '3.8': bpo-30612: Tweak Windows registry path syntax in the docs (GH-20281) https://github.com/python/cpython/commit/f53ea8adaecacfe8c1e4a093136fb5318b15d779 --

[issue30612] Unusual Windows registry path syntax

2020-10-20 Thread miss-islington
miss-islington added the comment: New changeset bd9d769eb226d99e186dae39e06ba8977485 by Miss Skeleton (bot) in branch '3.9': bpo-30612: Tweak Windows registry path syntax in the docs (GH-20281) https://github.com/python/cpython/commit/bd9d769eb226d99e186dae39e06ba8977485 --

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread hai shi
hai shi added the comment: > Definitely. Sorry for the delay -- I missed the notification here. No problem. This is not a block issue :) -- ___ Python tracker ___

[issue11305] TextIOWrapper.readline and str.splitlines have different behavior

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue40703] PyType_FromSpec*() overwrites the type's "__module__"

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: Thank you, Stefan! This should have a test as well. I'm willing to mentor someone who wants to get into the C-API, otherwise this has low priority for me. -- resolution: -> fixed stage: test needed -> resolved status: open -> closed

[issue38324] [Windows] test__locale fails on Windows local machines

2020-10-20 Thread miss-islington
miss-islington added the comment: New changeset 4cde523aa467c92a713674c793ab87e7c56486c4 by Miss Skeleton (bot) in branch '3.8': bpo-38324: Fix test__locale.py Windows failures (GH-20529) https://github.com/python/cpython/commit/4cde523aa467c92a713674c793ab87e7c56486c4 --

[issue41768] unittest.mock spec calls class properties

2020-10-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +cjw296, lisroach, mariocj89 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41737] Improper NotADirectoryError when opening a file in a fake directory

2020-10-20 Thread Danny Lin
Danny Lin added the comment: By writing "except FileNotFoundError:", the intention is to catch an error when the file being opened is not found, and don't catch an error for other cases, such as an existing file without adequate permission. Writing "except OSError:" catches just too much

[issue39693] tarfile's extractfile documentation is misleading

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset ec42789e6e14f6b6ac13569aeadc13798d7173a8 by Andrey Doroschenko in branch 'master': bpo-39693: mention KeyError in tarfile extractfile documentation (GH-18639) https://github.com/python/cpython/commit/ec42789e6e14f6b6ac13569aeadc13798d7173a8

[issue39693] tarfile's extractfile documentation is misleading

2020-10-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +21775 pull_request: https://github.com/python/cpython/pull/22819 ___ Python tracker

[issue40554] Add escape to the glossary?

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: Closing issue, since the consensus is to not add the term. -- nosy: +akuchling resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31686] GZip library doesn't properly close files

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36568] Typo in socket.CAN_RAW_FD_FRAMES library documentation

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue29986] Documentation recommends raising TypeError from tp_richcompare

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue24538] os.setxattr PermissionError on panfs propagates up causing `copystat`, `copytree`, and `pip install .` to fail unhepfully

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue33592] Document contextvars C API

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40860] Exception in multiprocessing/context.py under load

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Multiprocessing docs don't describe thread-safety ___ Python tracker

[issue37640] telnetlib crash in Python3 while receiving un-printable characters from server

2020-10-20 Thread sheidan
Change by sheidan : -- nosy: +shei dan nosy_count: 1.0 -> 2.0 pull_requests: +21770 pull_request: https://github.com/python/cpython/pull/22814 ___ Python tracker ___

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +21773 pull_request: https://github.com/python/cpython/pull/22817 ___ Python tracker ___

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread Steve Dower
Steve Dower added the comment: New changeset faddc7449d07e883b8ad8bb95dd68ce6dbdc06e8 by Miro Hrončok in branch 'master': bpo-38439: Add 256px IDLE icon to the .ico, drop gifs from it (GH-19648) https://github.com/python/cpython/commit/faddc7449d07e883b8ad8bb95dd68ce6dbdc06e8 --

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42090] zipfile.Path.joinpath API inconsistent with pathlib.Path.joinpath

2020-10-20 Thread Jason R. Coombs
Jason R. Coombs added the comment: This sounds like a worthy improvement. Are you interested in preparing a patch? Would you consider contributing it to https://github.com/jaraco/zipp first? -- ___ Python tracker

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 38a17d0752781c70fd971f372ddc8d3caf5ded88 by Miss Skeleton (bot) in branch '3.9': bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in refcounts.dat (GH-22112) (GH-22808)

[issue41726] Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat

2020-10-20 Thread hai shi
hai shi added the comment: Thanks petr for your review and merge. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41737] Improper NotADirectoryError when opening a file in a fake directory

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +21774 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22818 ___ Python tracker ___

[issue42089] Better message in PackageNotFoundError

2020-10-20 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33754] f-strings should be part of the Grammar

2020-10-20 Thread Lysandros Nikolaou
Change by Lysandros Nikolaou : -- nosy: +lys.nikolaou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41737] Improper NotADirectoryError when opening a file in a fake directory

2020-10-20 Thread Irit Katriel
Irit Katriel added the comment: Hi Danny, I'm not saying that OSError and FileNotFoundError are equivalent. I'm saying that the open() API, as documented, raises OSError when opening the file fails. The way to check whether a file exists is to use os.path.exists(path) or

[issue39693] tarfile's extractfile documentation is misleading

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset b249aeae89f55b9da5cdff082ba271e2b15b7825 by Miss Skeleton (bot) in branch '3.9': bpo-39693: mention KeyError in tarfile extractfile documentation (GH-18639) https://github.com/python/cpython/commit/b249aeae89f55b9da5cdff082ba271e2b15b7825

[issue39693] tarfile's extractfile documentation is misleading

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: Closing after applying the PR. Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.7, Python 3.8 ___ Python tracker

[issue41737] Improper NotADirectoryError when opening a file in a fake directory

2020-10-20 Thread Danny Lin
Danny Lin added the comment: I don't think a general developer would expect that open('/path/to/file/somename.txt') implies a directory operation, and it also doesn't on Windows. I suggest that a further notice be added to NotADirectoryError, such as: Raised when a directory operation

[issue42097] Python 3.7.9 logging/threading/fork hang

2020-10-20 Thread Andrew de Quincey
New submission from Andrew de Quincey : We've been having some mysterious hangs in our threaded code. Debugging with GDB shows it ends up deadlocking during logging inside logging._acquireLock() I googled and found someone else with the same issue:

[issue42097] Python 3.7.9 logging/threading/fork hang

2020-10-20 Thread Andrew de Quincey
Andrew de Quincey added the comment: Debugging a bit more shows our code is deadlocked at: File "/usr/lib/python3.7/logging/__init__.py", line 219, in _acquireLock _lock.acquire() File "/usr/lib/python3.7/logging/config.py", line 501, in configure logging._acquireLock() File

[issue41192] Some audit events are undocumented

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 0c37269be7065b9b15b7b3a4406084f9535a793a by Andrew Kuchling in branch 'master': bpo-41192: Clarify the sys module's description of the auditing feature (GH-22768) https://github.com/python/cpython/commit/0c37269be7065b9b15b7b3a4406084f9535a793a

[issue41192] Some audit events are undocumented

2020-10-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +21776 pull_request: https://github.com/python/cpython/pull/22820 ___ Python tracker ___

[issue42097] Python 3.7.9 logging/threading/fork hang

2020-10-20 Thread Andrew de Quincey
Andrew de Quincey added the comment: My colleague reports it does happen on their Mac as well, but that it took about 50 tries for it to trigger. -- ___ Python tracker ___

[issue41737] Improper NotADirectoryError when opening a file in a fake directory

2020-10-20 Thread Irit Katriel
Irit Katriel added the comment: > I don't think a general developer would expect that > open('/path/to/file/somename.txt') implies a directory operation, and it also > doesn't on Windows. Really? It's not obvious that finding a file would involve directory operations? In what sense does

[issue42037] Documentation confusion in CookieJar functions

2020-10-20 Thread Éric Araujo
Éric Araujo added the comment: Ah, I see it now: get_host and get_type are in both lists! Would you like to contribute a fix for the docs? If yes, help is here: https://devguide.python.org/docquality/ -- ___ Python tracker

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread Steve Dower
Steve Dower added the comment: New changeset 6d883fbe14751b58d9ed2fd708322613d8931035 by Steve Dower in branch 'master': bpo-38439: Update the Windows Store package's icons for IDLE. Artwork by Andrew Clover (GH-22817)

[issue41192] Some audit events are undocumented

2020-10-20 Thread A.M. Kuchling
Change by A.M. Kuchling : -- pull_requests: +21777 pull_request: https://github.com/python/cpython/pull/22821 ___ Python tracker ___

[issue41954] [mock] Recursion on mocking inspect.isfunction

2020-10-20 Thread Stanislav Levin
Stanislav Levin added the comment: I see, thank you for your time. -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___

[issue38865] [subinterpreters] Can Py_Finalize() be called if the current interpreter is not the main interpreter?

2020-10-20 Thread Lewis Gaul
Change by Lewis Gaul : -- nosy: +LewisGaul nosy_count: 4.0 -> 5.0 pull_requests: +21778 pull_request: https://github.com/python/cpython/pull/17575 ___ Python tracker ___

[issue42099] Fix reference to ob_type in unionobject.c and ceval

2020-10-20 Thread Neil Schemenauer
Change by Neil Schemenauer : -- keywords: +patch pull_requests: +21784 pull_request: https://github.com/python/cpython/pull/22829 ___ Python tracker ___

[issue42087] Remove pre-AIX 6.1 dead code paths

2020-10-20 Thread Kevin
Change by Kevin : -- keywords: +patch pull_requests: +21785 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22830 ___ Python tracker ___

[issue23510] multiprocessing bug SyncManager and 'with'

2020-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: duplicate -> out of date ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23510] multiprocessing bug SyncManager and 'with'

2020-10-20 Thread Irit Katriel
Irit Katriel added the comment: Yes, it was fixed in version 3.3, under issue15064: https://github.com/python/cpython/commit/ac38571f00ccb5e1e0346ad27a8fac96d05e61c3 -- resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> Use context manager

[issue38144] Add the root_dir and dir_fd parameters in glob.glob()

2020-10-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1d3469988e2c1f53ca84ffdc979d548c04ba3906 by Serhiy Storchaka in branch 'master': bpo-38144: Re-add accidentally removed audition for glob. (GH-22805) https://github.com/python/cpython/commit/1d3469988e2c1f53ca84ffdc979d548c04ba3906

[issue41586] Allow to set pipe size on subprocess.Popen.

2020-10-20 Thread Gregory P. Smith
Gregory P. Smith added the comment: this caused a variety of buildbot failures. investigating. -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue39116] StreamReader.readexactly() raises GeneratorExit on ProactorEventLoop

2020-10-20 Thread twisteroid ambassador
twisteroid ambassador added the comment: I have attached a script that should be able to reproduces this problem. It's not a minimal reproduction, but hopefully easy enough to trigger. The script is a SOCKS5 proxy server listening on localhost:1080. In its current form it does not need any

[issue41192] Some audit events are undocumented

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 46130f85381f697dc7f609b2659cc046d2370417 by Miss Skeleton (bot) in branch '3.9': bpo-41192: Add documentation of undocumented audit events (GH-22831) https://github.com/python/cpython/commit/46130f85381f697dc7f609b2659cc046d2370417 --

[issue41192] Some audit events are undocumented

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 058affc09f0f105444ec62c880907a512b785b72 by Miss Skeleton (bot) in branch '3.8': bpo-41192: Add documentation of undocumented audit events (GH-22832) https://github.com/python/cpython/commit/058affc09f0f105444ec62c880907a512b785b72 --

[issue41192] Some audit events are undocumented

2020-10-20 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset a797fd74fe11ef5968b8593b0d39b6aa6ba5aef1 by Miss Skeleton (bot) in branch '3.8': bpo-41192: Clarify the sys module's description of the auditing feature (GH-22820)

[issue39640] fall back os.fdatasync() to fsync() on POSIX systems without fdatasync() support

2020-10-20 Thread Ned Deily
Change by Ned Deily : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42097] Python 3.7.9 logging/threading/fork hang

2020-10-20 Thread Andrew de Quincey
Change by Andrew de Quincey : Removed file: https://bugs.python.org/file49531/test.py ___ Python tracker ___ ___ Python-bugs-list mailing

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +21782 pull_request: https://github.com/python/cpython/pull/22825 ___ Python tracker ___

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +21781 pull_request: https://github.com/python/cpython/pull/22824 ___ Python tracker ___

[issue38439] Python needs higher resolution app/menu icons

2020-10-20 Thread miss-islington
miss-islington added the comment: New changeset d84e411005401b3c22d7f5836fa366e7aeeb1f21 by Miss Skeleton (bot) in branch '3.8': bpo-38439: Add 256px IDLE icon to the .ico, drop gifs from it (GH-19648) https://github.com/python/cpython/commit/d84e411005401b3c22d7f5836fa366e7aeeb1f21

  1   2   >