[issue38520] There is no proper way to know if a process is the main one

2020-12-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +22489 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23621 ___ Python tracker <https://bugs.python.org/i

[issue42559] random.getrandbits: Should it be explicit that it returns unsigned/non-negative integer?

2020-12-06 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +22534 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23667 ___ Python tracker <https://bugs.python.org/i

[issue35332] shutil.rmtree(..., ignore_errors=True) doesn't ignore errors from os.close()

2020-12-14 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +22622 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23766 ___ Python tracker <https://bugs.python.org/i

[issue42665] Should PyLong_AsLongAndOverflow raise exception on overflow?

2020-12-17 Thread Zackery Spytz
Zackery Spytz added the comment: > No, it should not. I agree. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue42665> ___ ___ Python-

[issue42670] Missing word in itertools.product

2020-12-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +22683 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23823 ___ Python tracker <https://bugs.python.org/i

[issue39560] PyUnicode_FromKindAndData kind transformation is not documented

2020-12-18 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +22710 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23848 ___ Python tracker <https://bugs.python.org/i

[issue42681] mistake in curses documentation

2020-12-19 Thread Zackery Spytz
Zackery Spytz added the comment: Please explain why you believe this is a mistake. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue42

[issue42367] Restore os.makedirs ability to apply mode to all directories created

2020-12-22 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +22756 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/23901 ___ Python tracker <https://bugs.p

[issue38308] Add optional weighting to statistics.harmonic_mean()

2020-12-23 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +22770 pull_request: https://github.com/python/cpython/pull/23919 ___ Python tracker <https://bugs.python.org/issu

[issue38308] Add optional weighting to statistics.harmonic_mean()

2020-12-23 Thread Zackery Spytz
Zackery Spytz added the comment: The "versionchanged" for *weights* should be 3.10, not 3.8. I've created PR 23919 to fix this. -- versions: +Python 3.10 -Python 3.9 ___ Python tracker <https://bugs.pyt

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +22826 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23982 ___ Python tracker <https://bugs.python.org/i

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a fix for this error. -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue42770> ___ ___

[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2.7 is no longer supported, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue34

[issue42814] Undefined behavior in Objects/genericaliasobject.c

2021-01-03 Thread Zackery Spytz
New submission from Zackery Spytz : In is_typing_name(), va_end() is not always called before the function returns. It is undefined behavior to call va_start() without also calling va_end(). -- components: Interpreter Core messages: 384261 nosy: ZackerySpytz priority: normal severity

[issue42814] Undefined behavior in Objects/genericaliasobject.c

2021-01-03 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +22906 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24073 ___ Python tracker <https://bugs.python.org/issu

[issue28937] str.split(): allow removing empty strings (when sep is not None)

2021-01-04 Thread Zackery Spytz
Zackery Spytz added the comment: I am working on this issue. -- assignee: -> ZackerySpytz nosy: +ZackerySpytz versions: +Python 3.10 -Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue42884] array.index() missing start and end

2021-01-10 Thread Zackery Spytz
Zackery Spytz added the comment: This seems like a duplicate of bpo-31956. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue42

[issue42952] Incorrect handling of EC_KEY_new_by_curve_name() in the _ssl module

2021-01-17 Thread Zackery Spytz
New submission from Zackery Spytz : A EC_KEY_new_by_curve_name() call in the _ssl__SSLContext_impl() function is not checked for failure. -- assignee: christian.heimes components: Extension Modules, SSL messages: 385173 nosy: ZackerySpytz, christian.heimes priority: normal severity

[issue42952] Incorrect handling of EC_KEY_new_by_curve_name() in the _ssl module

2021-01-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23059 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24237 ___ Python tracker <https://bugs.python.org/issu

[issue43011] DeprecationWarnings in test_ctypes

2021-01-23 Thread Zackery Spytz
New submission from Zackery Spytz : ./python -m test test_ctypes 0:00:00 load avg: 1.65 Run tests sequentially 0:00:00 load avg: 1.65 [1/1] test_ctypes /home/lubuntu2/cpython/Lib/ctypes/test/test_parameters.py:243: DeprecationWarning: invalid escape sequence \( self.assertRegex(repr

[issue43011] DeprecationWarnings in test_ctypes

2021-01-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23126 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24305 ___ Python tracker <https://bugs.python.org/issu

[issue43033] Incorrect handling of PyObject_SetAttrString() in the _zoneinfo module

2021-01-26 Thread Zackery Spytz
New submission from Zackery Spytz : There is a PyObject_SetAttrString() call in zoneinfo_init_subclass() which is not checked for failure. This could lead to serious bugs if an exception occurs in PyObject_SetAttrString(). -- components: Extension Modules messages: 385739 nosy

[issue43033] Incorrect handling of PyObject_SetAttrString() in the _zoneinfo module

2021-01-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23165 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24345 ___ Python tracker <https://bugs.python.org/issu

[issue43087] ctypes documentation error

2021-01-31 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +23219 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24404 ___ Python tracker <https://bugs.python.org/i

[issue43087] ctypes documentation error

2021-01-31 Thread Zackery Spytz
Zackery Spytz added the comment: Thank you for the report. -- versions: +Python 3.10, Python 3.8 ___ Python tracker <https://bugs.python.org/issue43087> ___ ___

[issue43132] Incorrect handling of PyObject_RichCompareBool() in the _zoneinfo module

2021-02-04 Thread Zackery Spytz
New submission from Zackery Spytz : PyObject_RichCompareBool() returns -1 on error, but this case is not handled by the find_in_strong_cache() function. -- components: Extension Modules messages: 386503 nosy: ZackerySpytz priority: normal severity: normal status: open title: Incorrect

[issue43132] Incorrect handling of PyObject_RichCompareBool() in the _zoneinfo module

2021-02-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23251 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24450 ___ Python tracker <https://bugs.python.org/issu

[issue43132] Incorrect handling of PyObject_RichCompareBool() in the _zoneinfo module

2021-02-07 Thread Zackery Spytz
Zackery Spytz added the comment: Okay, I will add some tests. -- ___ Python tracker <https://bugs.python.org/issue43132> ___ ___ Python-bugs-list mailin

[issue43155] PyCMethod_New not defined in python3.lib

2021-02-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 1.0 -> 2.0 pull_requests: +23289 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24500 ___ Python tracker <https://bugs.python.org/i

[issue43200] link to copy module in shutil document, not to shutil.copy

2021-02-11 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +23295 pull_request: https://github.com/python/cpython/pull/24505 ___ Python tracker <https://bugs.python.org/issu

[issue35026] Winreg's documentation lacks mentioning required permission at some points

2021-02-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 7.0 -> 8.0 pull_requests: +23330 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24547 ___ Python tracker <https://bugs.python.org/i

[issue43155] PyCMethod_New not defined in python3.lib

2021-02-16 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +23336 pull_request: https://github.com/python/cpython/pull/24554 ___ Python tracker <https://bugs.python.org/issue43

[issue41847] Update "install launcher for all users" installer option

2021-02-18 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +23349 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/24570 ___ Python tracker <https://bugs.p

[issue43327] The docs falsely state that PyImport_ImportFrozenModuleObject() returns a new reference

2021-02-26 Thread Zackery Spytz
New submission from Zackery Spytz : The docs state that PyImport_ImportFrozenModuleObject() returns a new reference, but it actually returns an int. https://docs.python.org/3.10/c-api/import.html#c.PyImport_ImportFrozenModuleObject -- assignee: docs@python components: Documentation

[issue43327] The docs falsely state that PyImport_ImportFrozenModuleObject() returns a new reference

2021-02-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23444 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24659 ___ Python tracker <https://bugs.python.org/issu

[issue42484] get_obs_local_part fails to handle empty local part

2021-02-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +23455 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24669 ___ Python tracker <https://bugs.python.org/i

[issue43405] DeprecationWarnings in test_unicode

2021-03-04 Thread Zackery Spytz
New submission from Zackery Spytz : ./python -m test test_unicode 0:00:00 load avg: 0.33 Run tests sequentially 0:00:00 load avg: 0.33 [1/1] test_unicode /home/lubuntu2/cpython/Lib/test/test_unicode.py:2941: DeprecationWarning: getargs: The 'u' format is deprecated. Use &

[issue43405] DeprecationWarnings in test_unicode

2021-03-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23525 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24754 ___ Python tracker <https://bugs.python.org/issu

[issue40982] copytree example in shutil

2021-03-06 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +23543 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24778 ___ Python tracker <https://bugs.python.org/i

[issue43429] mmap.size() raises OSError on Unix for anonymous memory

2021-03-07 Thread Zackery Spytz
New submission from Zackery Spytz : For anonymous memory, mmap.size() works without issue on Windows, but it raises OSError on Unix. -- components: Extension Modules messages: 388252 nosy: ZackerySpytz priority: normal severity: normal status: open title: mmap.size() raises OSError on

[issue43429] mmap.size() raises OSError on Unix for anonymous memory

2021-03-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +23547 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24781 ___ Python tracker <https://bugs.python.org/issu

[issue39631] Fix file association MIME type on Windows

2020-05-18 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +19502 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20205 ___ Python tracker <https://bugs.p

[issue39673] Map errno==ETIME to TimeoutError

2020-05-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +19538 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20253 ___ Python tracker <https://bugs.p

[issue39673] Map errno==ETIME to TimeoutError

2020-05-19 Thread Zackery Spytz
Change by Zackery Spytz : -- versions: +Python 3.10 -Python 3.9 ___ Python tracker <https://bugs.python.org/issue39673> ___ ___ Python-bugs-list mailin

[issue30612] Unusual Windows registry path syntax

2020-05-20 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 7.0 -> 8.0 pull_requests: +19558 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20281 ___ Python tracker <https://bugs.python.org/i

[issue40262] SSL recv_into requires the object to implement __len__ unlike socket one

2020-05-21 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +19579 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20310 ___ Python tracker <https://bugs.python.org/i

[issue40722] test_ttk_guionly times out on Ubuntu CI

2020-05-23 Thread Zackery Spytz
Zackery Spytz added the comment: See also bpo-30756. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue40722> ___ ___ Python-bugs-list m

[issue39301] Specification of bitshift on integers should clearly state floor division used

2020-05-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +19610 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20347 ___ Python tracker <https://bugs.p

[issue35714] Document that the null character '\0' terminates a struct format spec

2020-05-26 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +19678 pull_request: https://github.com/python/cpython/pull/20419 ___ Python tracker <https://bugs.python.org/issue35

[issue14562] urllib2 maybe blocks too long with small chunks

2020-05-27 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue14

[issue37674] Is imp module deprecated or pending deprecation?

2020-05-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +19729 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20480 ___ Python tracker <https://bugs.python.org/i

[issue31869] commentary on ssl.PROTOCOL_TLS

2020-05-30 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue31869> ___ ___ Python-bugs-list mailin

[issue23885] urllib.quote horribly mishandles unicode as second parameter

2020-05-31 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue23

[issue24048] remove_module() needs to save/restore exception state

2020-05-31 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that Serhiy backported the fix. -- ___ Python tracker <https://bugs.python.org/issue24048> ___ ___ Python-bugs-list m

[issue40831] Wrong statement that bytes paths are deprecated under Windows regarding MAX_PATH docs

2020-06-01 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +19810 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20570 ___ Python tracker <https://bugs.python.org/i

[issue40831] Wrong statement that bytes paths are deprecated under Windows regarding MAX_PATH docs

2020-06-01 Thread Zackery Spytz
Zackery Spytz added the comment: I have created a fix for this issue. Please consider taking a look. -- ___ Python tracker <https://bugs.python.org/issue40

[issue10631] ZipFile and current directory change

2020-06-02 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue10

[issue37746] Provide Windows predefined access type constants

2020-06-03 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +19843 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20617 ___ Python tracker <https://bugs.p

[issue40882] memory leak in multiprocessing.shared_memory.SharedMemory in Windows

2020-06-06 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +19897 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20684 ___ Python tracker <https://bugs.p

[issue34023] timedelta(seconds=x) strange results when type(x) == np.int32

2020-06-07 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue34

[issue29242] Crash on GC when compiling PyPy

2020-06-09 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue29

[issue31082] reduce takes iterable, not just sequence

2020-06-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +19992 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20796 ___ Python tracker <https://bugs.python.org/i

[issue27729] Provide a better error message when the file path is too long on Windows

2020-06-12 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +20037 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/20844 ___ Python tracker <https://bugs.p

[issue36470] dataclasses.replace raises an exception if InitVar with default argument is not provided.

2020-06-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +20056 pull_request: https://github.com/python/cpython/pull/20867 ___ Python tracker <https://bugs.python.org/issu

[issue19821] pydoc.ispackage() could be more accurate

2020-06-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20090 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20908 ___ Python tracker <https://bugs.p

[issue35018] Sax parser provides no user access to lexical handlers

2020-06-17 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20136 pull_request: https://github.com/python/cpython/pull/20958 ___ Python tracker <https://bugs.python.org/issu

[issue35018] Sax parser provides no user access to lexical handlers

2020-06-18 Thread Zackery Spytz
Change by Zackery Spytz : -- versions: +Python 3.10 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue35018> ___ ___ Python-bugs-list mailin

[issue40851] subprocess.Popen: impossible to show console window when shell=True

2020-06-18 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +20152 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20975 ___ Python tracker <https://bugs.p

[issue16623] argparse help formatter does not honor non-breaking space

2020-06-22 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue16

[issue25257] In subject line email library inserts unwanted space after a thousands comma in a number

2020-06-23 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue25

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2020-06-24 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +20281 pull_request: https://github.com/python/cpython/pull/21118 ___ Python tracker <https://bugs.python.org/issu

[issue40309] “unmatched paren” for space before parenthesis in Py_BuildValue

2020-06-25 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 1.0 -> 2.0 pull_requests: +20318 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21158 ___ Python tracker <https://bugs.python.org/i

[issue26212] Python with ncurses6.0 will not load _curses module on Solaris 10

2020-06-26 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue26

[issue31590] CSV module incorrectly treats escaped newlines as new records if unquoted

2020-06-27 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue31

[issue27154] Regression in file.writelines behavior

2020-06-28 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue27

[issue38782] Convert importlib.abc to use typing.Protocol

2020-06-30 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20397 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21245 ___ Python tracker <https://bugs.python.org/i

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +20463 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21311 ___ Python tracker <https://bugs.python.org/i

[issue39168] Generic type subscription is a huge toll on Python performance

2020-07-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +20477 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21327 ___ Python tracker <https://bugs.python.org/i

[issue41217] Obsolete note for default asyncio event loop on Windows

2020-07-06 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +20505 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21360 ___ Python tracker <https://bugs.python.org/i

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Zackery Spytz
New submission from Zackery Spytz : If the SSL_CTX_set_tmp_dh() call fails, SSLContext.load_dh_params() returns None with a live exception. It should return NULL in this case. -- assignee: christian.heimes components: Extension Modules, SSL messages: 373271 nosy: ZackerySpytz

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +20530 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21385 ___ Python tracker <https://bugs.python.org/issu

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-08 Thread Zackery Spytz
New submission from Zackery Spytz : In _servername_callback(), servername_bytes will be used after being decrefed if PyUnicode_FromEncodedObject() fails. -- assignee: christian.heimes components: Extension Modules, SSL messages: 373371 nosy: ZackerySpytz, christian.heimes priority

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +20557 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21407 ___ Python tracker <https://bugs.python.org/issu

[issue41136] argparse uses default encoding when read arguments from file

2020-07-11 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20592 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21444 ___ Python tracker <https://bugs.python.org/i

[issue37237] python 2.16 from source on Ubuntu 18.04

2020-07-13 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2.7 is no longer supported, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37

[issue32695] tarfile.open() raises TypeError when using compresslevel parameter with LZMA

2020-07-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 1.0 -> 2.0 pull_requests: +20614 pull_request: https://github.com/python/cpython/pull/21470 ___ Python tracker <https://bugs.python.org/issu

[issue33007] Objects referencing private-mangled names do not roundtrip properly under pickling.

2020-07-14 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20623 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21480 ___ Python tracker <https://bugs.python.org/i

[issue21625] Make help() beginner helpful when no PAGER or LESS variable

2020-07-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 7.0 -> 8.0 pull_requests: +20657 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21520 ___ Python tracker <https://bugs.p

[issue41336] Random segfaults during zoneinfo object creation stopped using Ctrl-C

2020-07-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +20688 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21546 ___ Python tracker <https://bugs.python.org/i

[issue35328] Set a environment variable for venv prompt

2020-07-21 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +20727 pull_request: https://github.com/python/cpython/pull/21587 ___ Python tracker <https://bugs.python.org/issu

[issue4630] IDLE: add cursor noblink option

2020-07-22 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +20733 pull_request: https://github.com/python/cpython/pull/21594 ___ Python tracker <https://bugs.python.org/issue4

[issue22431] Change format of test runner output

2020-07-24 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 8.0 -> 9.0 pull_requests: +20751 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21609 ___ Python tracker <https://bugs.python.org/i

[issue30155] Add ability to get tzinfo from a datetime instance in C API

2020-07-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +20775 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21633 ___ Python tracker <https://bugs.p

[issue30155] Add ability to get tzinfo from a datetime instance in C API

2020-07-26 Thread Zackery Spytz
Zackery Spytz added the comment: I have created PR 21633 to add these macros. Please consider taking a look. -- versions: +Python 3.10 -Python 3.9 ___ Python tracker <https://bugs.python.org/issue30

[issue41374] socket.TCP_* no longer available with cygwin 3.1.6+

2020-07-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 2.0 -> 3.0 pull_requests: +20789 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21649 ___ Python tracker <https://bugs.python.org/i

[issue6143] IDLE - clear and restart the shell window

2020-07-29 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 7.0 -> 8.0 pull_requests: +20826 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21682 ___ Python tracker <https://bugs.python.org/

[issue6143] IDLE - clear and restart the shell window

2020-07-29 Thread Zackery Spytz
Zackery Spytz added the comment: I have created PR 21682 to add a "Clear and Restart" item to the "Shell" menu. -- ___ Python tracker <https://bu

[issue41453] A possible reference leak in _locale.localeconv()

2020-07-31 Thread Zackery Spytz
New submission from Zackery Spytz : If the _Py_GetLocaleconvNumeric() call fails in _locale_localeconv_impl(), "decimal_point" may be leaked. -- components: Extension Modules messages: 374655 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible

[issue41453] A possible reference leak in _locale.localeconv()

2020-07-31 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +20843 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21699 ___ Python tracker <https://bugs.python.org/issu

[issue41260] datetime: strftime method takes different keyword argument: fmt (pure) or format (C)

2020-08-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +20856 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21712 ___ Python tracker <https://bugs.p

<    1   2   3   4   5   6   7   8   >