[issue38554] A fatal error in test_descr

2019-10-21 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16424 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16879 ___ Python tracker <https://bugs.python.org/issu

[issue38554] A fatal error in test_descr

2019-10-21 Thread Zackery Spytz
New submission from Zackery Spytz : When running test_descr, I encountered a fatal error! ./python -m test test_descr 0:00:00 load avg: 0.46 Run tests sequentially 0:00:00 load avg: 0.46 [1/1] test_descr python: Objects/typeobject.c:7318: update_one_slot: Assertion `!PyErr_Occurred()' failed

[issue38532] Missing decrefs in the _ctypes module

2019-10-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16404 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16857 ___ Python tracker <https://bugs.python.org/issu

[issue38532] Missing decrefs in the _ctypes module

2019-10-19 Thread Zackery Spytz
New submission from Zackery Spytz : In PyCFuncPtr_FromDll(), there are two missing calls to Py_DECREF() if PySys_Audit() fails! -- components: Extension Modules messages: 354980 nosy: ZackerySpytz priority: normal severity: normal status: open title: Missing decrefs in the _ctypes

[issue38410] Possible fatal errors due to _PyEval_SetAsyncGen{Finalizer, Firstiter}()

2019-10-08 Thread Zackery Spytz
New submission from Zackery Spytz : _PyEval_SetAsyncGenFinalizer() and _PyEval_SetAsyncGenFirstiter() don't include proper error handling for their PySys_Audit() calls. This could lead to leaked exceptions and fatal errors. -- components: Interpreter Core messages: 354210 nosy

[issue38410] Possible fatal errors due to _PyEval_SetAsyncGen{Finalizer, Firstiter}()

2019-10-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16240 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16657 ___ Python tracker <https://bugs.python.org/issu

[issue38384] An assertion failure in test_pickle

2019-10-06 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16194 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16606 ___ Python tracker <https://bugs.python.org/issu

[issue38384] An assertion failure in test_pickle

2019-10-06 Thread Zackery Spytz
New submission from Zackery Spytz : When running test_pickle, I sometimes see an assertion failure. ./python -m test test_pickle 0:00:00 load avg: 1.04 Run tests sequentially 0:00:00 load avg: 1.04 [1/1] test_pickle python: Objects/typeobject.c:3151: _PyType_Lookup: Assertion `!PyErr_Occurred

[issue38378] os.sendfile() has improperly named parameter

2019-10-05 Thread Zackery Spytz
Zackery Spytz added the comment: See also bpo-15078. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue38378> ___ ___ Python-bugs-list m

[issue37025] Misleading error message "Python failed to load the default activation context"

2019-10-04 Thread Zackery Spytz
Zackery Spytz added the comment: Thank you for the report. I've created a pull request to fix this issue. -- nosy: +ZackerySpytz versions: +Python 2.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue37

[issue37025] Misleading error message "Python failed to load the default activation context"

2019-10-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16170 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16579 ___ Python tracker <https://bugs.python.org/issu

[issue38202] A fatal error in test_dictviews

2019-09-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15838 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16241 ___ Python tracker <https://bugs.python.org/issu

[issue38202] A fatal error in test_dictviews

2019-09-17 Thread Zackery Spytz
New submission from Zackery Spytz : When running test_dictviews, I sometimes encounter a fatal error. ./python -m test test_dictviews Run tests sequentially 0:00:00 load avg: 0.36 [1/1] test_dictviews python: Objects/typeobject.c:3125: _PyType_Lookup: Assertion `!PyErr_Occurred()' failed

[issue37953] Fix ForwardRef equality checks

2019-09-14 Thread Zackery Spytz
Zackery Spytz added the comment: There are deprecation warnings in test_typing. ./python -m test test_typing Run tests sequentially 0:00:00 load avg: 0.16 [1/1] test_typing /home/lubuntu2/cpython/Lib/test/test_typing.py:2382: DeprecationWarning: Please use assertEqual instead

[issue37953] Fix ForwardRef equality checks

2019-09-14 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15745 pull_request: https://github.com/python/cpython/pull/16133 ___ Python tracker <https://bugs.python.org/issue37

[issue38128] IDLE undo calls get_saved() when set to None

2019-09-11 Thread Zackery Spytz
Zackery Spytz added the comment: This seems like a duplicate of bpo-35263. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue38

[issue38127] A fatal error when running test_ctypes

2019-09-11 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15637 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16011 ___ Python tracker <https://bugs.python.org/issu

[issue38127] A fatal error when running test_ctypes

2019-09-11 Thread Zackery Spytz
New submission from Zackery Spytz : When running test_ctypes, I encountered a fatal error. ./python -m test test_ctypes Run tests sequentially 0:00:00 load avg: 0.13 [1/1] test_ctypes Fatal Python error: a function returned a result with an error set MemoryError The above exception

[issue36869] Avoid warning of unused variables

2019-09-10 Thread Zackery Spytz
Zackery Spytz added the comment: PR 13182 has been merged, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue36

[issue25753] Reference leaks in test_smtplib

2019-09-10 Thread Zackery Spytz
Zackery Spytz added the comment: I cannot reproduce these leaks. I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue25

[issue29171] blake2: Remove unused function to avoid undefined references

2019-09-10 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that this was fixed as part of bpo-37055 / b27cbec801e17a13d7fef49116a8fc279930d2b1. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue29

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-10 Thread Zackery Spytz
Zackery Spytz added the comment: Hi, Steve. I've created a backport for 2.7 (PR 15822). Please take a look. -- ___ Python tracker <https://bugs.python.org/issue37

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15470 pull_request: https://github.com/python/cpython/pull/15822 ___ Python tracker <https://bugs.python.org/issue37

[issue38031] FileIO.__init__ aborts when opener returns bad fd

2019-09-04 Thread Zackery Spytz
Zackery Spytz added the comment: Thank you for the report. -- components: +Interpreter Core nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue38

[issue38031] FileIO.__init__ aborts when opener returns bad fd

2019-09-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15346 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15688 ___ Python tracker <https://bugs.python.org/issu

[issue36030] add internal API function to create tuple without items array initialization

2019-09-03 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15333 pull_request: https://github.com/python/cpython/pull/15670 ___ Python tracker <https://bugs.python.org/issue36

[issue37705] winerror_to_errno implementation

2019-08-30 Thread Zackery Spytz
Zackery Spytz added the comment: I have created a pull request for this issue. Please take a look. -- nosy: +ZackerySpytz versions: -Python 3.8 ___ Python tracker <https://bugs.python.org/issue37

[issue37705] winerror_to_errno implementation

2019-08-30 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15291 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15623 ___ Python tracker <https://bugs.python.org/issu

[issue23878] Missing sanity checks for various C library function calls...

2019-08-28 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15241 pull_request: https://github.com/python/cpython/pull/1 ___ Python tracker <https://bugs.python.org/issue23

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: > IMO this is the province of things like scipy.special. The Bessel functions > (and many others) are already easily available to users of the scientific > Python stack. I don't really see a need to have them in core Python. I agree. --

[issue27260] Missing equality check for super objects

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: > I don't think this should be done. I agree, and I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issu

[issue30076] Opcode names BUILD_MAP_UNPACK_WITH_CALL and BUILD_TUPLE_UNPACK_WITH_CALL are too long

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: I have created a pull request for this issue. Please take a look. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue30

[issue30076] Opcode names BUILD_MAP_UNPACK_WITH_CALL and BUILD_TUPLE_UNPACK_WITH_CALL are too long

2019-08-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15199 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15513 ___ Python tracker <https://bugs.python.org/issu

[issue23878] Missing sanity checks for various C library function calls...

2019-08-23 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 2.7, Python 3.7, Python 3.8, Python 3.9 -Python 3.4 ___ Python tracker <https://bugs.python.org/issue23

[issue23878] Missing sanity checks for various C library function calls...

2019-08-23 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15123 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15424 ___ Python tracker <https://bugs.python.org/issu

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-22 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15099 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15389 ___ Python tracker <https://bugs.python.org/issu

[issue37633] Py_CompileString and PyParser_SimpleParseString not exported in python38.dll

2019-08-21 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.python.org/issue37633> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37886] PyStructSequence_UnnamedField not exported

2019-08-21 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.python.org/issue37886> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32793] smtplib: duplicated debug message

2019-08-20 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz type: -> behavior versions: +Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue32793] smtplib: duplicated debug message

2019-08-20 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15058 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15341 ___ Python tracker <https://bugs.python.org/issu

[issue37852] Pickling doesn't work for name-mangled private methods

2019-08-15 Thread Zackery Spytz
Zackery Spytz added the comment: This seems like a duplicate of bpo-33007. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37

[issue33012] Invalid function cast warnings with gcc 8 for METH_NOARGS

2019-08-13 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14986 pull_request: https://github.com/python/cpython/pull/14814 ___ Python tracker <https://bugs.python.org/issue33

[issue22811] _top_level_dir state leaks on defaultTestLoader

2019-08-12 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that this issue is a duplicate of bpo-15010. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue22

[issue15010] unittest: _top_level_dir is incorrectly persisted between calls to different load_test methods

2019-08-12 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.2, Python 3.3 ___ Python tracker <https://bugs.python.org/issue15

[issue15010] unittest: _top_level_dir is incorrectly persisted between calls to different load_test methods

2019-08-12 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14963 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15242 ___ Python tracker <https://bugs.python.org/issu

[issue37808] Deprecate unbound super methods

2019-08-10 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37808> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37808] Deprecate unbound super methods

2019-08-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14934 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15205 ___ Python tracker <https://bugs.python.org/issu

[issue37268] Deprecate the parser module

2019-08-08 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14915 pull_request: https://github.com/python/cpython/pull/15183 ___ Python tracker <https://bugs.python.org/issue37

[issue2920] Patch to print symbolic value of errno in OSError.__str__()

2019-08-06 Thread Zackery Spytz
Zackery Spytz added the comment: Eryk, I'm not sure if something similar should be done for winerror. I think it's best to keep OSError_str() as simple as possible. -- ___ Python tracker <https://bugs.python.org/issue2

[issue36279] os.wait3() leaks some uninitialized stack when no processes exist

2019-08-04 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14853 pull_request: https://github.com/python/cpython/pull/15111 ___ Python tracker <https://bugs.python.org/issue36

[issue35771] IDLE: Fix tooltip Hovertiptest failure

2019-08-04 Thread Zackery Spytz
Zackery Spytz added the comment: Sorry for the delay. I'm using Lubuntu 19.04. -- ___ Python tracker <https://bugs.python.org/issue35771> ___ ___ Python-bug

[issue34880] About the "assert" bytecode

2019-08-01 Thread Zackery Spytz
Change by Zackery Spytz : -- components: +Interpreter Core nosy: +ZackerySpytz versions: +Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue34

[issue34880] About the "assert" bytecode

2019-08-01 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14820 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15073 ___ Python tracker <https://bugs.python.org/issu

[issue33772] Fix few dead code paths

2019-07-28 Thread Zackery Spytz
New submission from Zackery Spytz : PR 7418 has been merged, so I think this issue can be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue33

[issue2920] Patch to print symbolic value of errno in OSError.__str__()

2019-07-28 Thread Zackery Spytz
Change by Zackery Spytz : -- title: Patch to print symbolic value or errno in EnvironmentError.__str__() -> Patch to print symbolic value of errno in OSError.__str__() versions: +Python 3.9 -Python 3.3 ___ Python tracker <https://bugs.pyth

[issue2920] Patch to print symbolic value or errno in EnvironmentError.__str__()

2019-07-27 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14755 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14988 ___ Python tracker <https://bugs.python.org/iss

[issue30685] Multiprocessing Send to Manager Fails for Large Payload

2019-07-24 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that this was fixed in bpo-17560. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue30

[issue37668] Allow individual test to be specified by "#" or "."

2019-07-24 Thread Zackery Spytz
Zackery Spytz added the comment: I don't think this change should be made. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37

[issue35771] IDLE: Fix tooltip Hovertiptest failure

2019-07-23 Thread Zackery Spytz
Zackery Spytz added the comment: For what it's worth, I see this failure often when running the test suite. I have created a pull request to increase the delay. -- nosy: +ZackerySpytz versions: +Python 3.9 ___ Python tracker <ht

[issue35771] IDLE: Fix tooltip Hovertiptest failure

2019-07-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14697 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14926 ___ Python tracker <https://bugs.python.org/issu

[issue36044] PROFILE_TASK for PGO build is not a good workload

2019-07-23 Thread Zackery Spytz
Zackery Spytz added the comment: Travis only runs 40 tests after this change (https://travis-ci.org/python/cpython/jobs/562362678). -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue36

[issue37665] threading.TIMEOUT_MAX integer overflow on 32-bit builds with threading.Thread.join

2019-07-23 Thread Zackery Spytz
Zackery Spytz added the comment: See also bpo-33632. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37665> ___ ___ Python-bugs-list m

[issue30237] Access violation due to CancelSynchronousIo of console read

2019-07-22 Thread Zackery Spytz
Zackery Spytz added the comment: PR 7911 was merged and backported. Should this issue be closed? -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue30

[issue36568] Typo in socket.CAN_RAW_FD_FRAMES library documentation

2019-07-22 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that this was fixed in 1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue36

[issue30864] Compile failure for linux socket CAN support

2019-07-22 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that the AF_CAN issue was fixed in bpo-31927 / d3187158c09cf899e9849f335bdff10594209167. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue30

[issue22491] Support Unicode line boundaries in regular expression

2019-07-22 Thread Zackery Spytz
Zackery Spytz added the comment: > To meet Unicode standard requirement RL1.6 [1] all Unicode line separators > should be supported: It seems that large portions of Modules/_sre.c would have to be rewritten in order to do this. -- nosy: +Zacker

[issue26695] pickle and _pickle accelerator have different behavior when unpickling an object with falsy __getstate__ return

2019-07-22 Thread Zackery Spytz
Zackery Spytz added the comment: Josh, would you consider creating a pull request for this issue? -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue26

[issue31546] PyOS_InputHook is not called when waiting for input() in Windows

2019-07-17 Thread Zackery Spytz
Zackery Spytz added the comment: Can this issue be closed? PR 7978 was merged and backported. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue31

[issue37337] Add _PyObject_VectorcallMethod() function

2019-07-17 Thread Zackery Spytz
Zackery Spytz added the comment: Commit b1263d5a60d3f7ab02dd28409fff59b3815a3f67 causes GCC 9.1.0 to give a warning in Objects/descrobject.c. Objects/descrobject.c:1050:19: warning: cast between incompatible function types from ‘PyObject * (*)(mappingproxyobject *, PyObject * const

[issue37337] Add _PyObject_VectorcallMethod() function

2019-07-17 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14608 pull_request: https://github.com/python/cpython/pull/14814 ___ Python tracker <https://bugs.python.org/issue37

[issue36711] duplicate method definition in Lib/email/feedparser.py

2019-07-16 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue36711> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36712] duplicate method definition in Lib/email/test/test_email_renamed.py

2019-07-16 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue36712> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36711] duplicate method definition in Lib/email/feedparser.py

2019-07-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14597 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14801 ___ Python tracker <https://bugs.python.org/issu

[issue36712] duplicate method definition in Lib/email/test/test_email_renamed.py

2019-07-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14596 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14800 ___ Python tracker <https://bugs.python.org/issu

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-15 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that 59ad110d7a7784d53d0b502eebce0346597a6bef introduced a compiler warning in Modules/_io/winconsoleio.c. c:\projects\cpython\modules\_io\winconsoleio.c(208): warning C4133: 'function': incompatible types - from 'winconsoleio *' to 'PyObject *' [C

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2019-07-15 Thread Zackery Spytz
Zackery Spytz added the comment: It seems that this issue is a duplicate of bpo-25518. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue33

[issue37547] Add _PyObject_CallMethodOneArg()

2019-07-15 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14582 pull_request: https://github.com/python/cpython/pull/14785 ___ Python tracker <https://bugs.python.org/issue37

[issue34543] _struct.Struct: calling functions without calling __init__ results in SystemError

2019-07-14 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 2.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue34543> ___ ___

[issue34543] _struct.Struct: calling functions without calling __init__ results in SystemError

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

[issue37291] AST - code cleanup

2019-07-14 Thread Zackery Spytz
Zackery Spytz added the comment: The linked PR was merged, so I think this issue can be closed. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37

[issue37588] Py_DEPRECATED and unavoidable warnings

2019-07-14 Thread Zackery Spytz
Zackery Spytz added the comment: > I would like some way of locally suppressing Py_DEPRECATED. There was some discussion (and a pull request) on bpo-19569. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issu

[issue3753] bytearray incompatible with y#

2019-07-11 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: -14485 ___ Python tracker <https://bugs.python.org/issue3753> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32381] Python 3.6 cannot reopen .pyc file with non-ASCII path

2019-07-11 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue32381> ___ ___

[issue32381] Python 3.6 cannot reopen .pyc file with non-ASCII path

2019-07-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14498 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/14699 ___ Python tracker <https://bugs.python.org/issu

[issue21120] PyArena type is used in headers from the limited API

2019-07-07 Thread Zackery Spytz
Change by Zackery Spytz : -- components: +Build -Library (Lib) nosy: +ZackerySpytz versions: +Python 3.9 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue21

[issue21120] PyArena type is used in headers from the limited API

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

[issue37501] Test failures when CPython is built without docstrings

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

[issue37501] Test failures when CPython is built without docstrings

2019-07-04 Thread Zackery Spytz
New submission from Zackery Spytz : test_coroutines, test_dataclasses, test_idle, test_importlib, test_module, and test_pydoc fail when CPython is built without docstrings. It seems that most of the failures occur simply because the test.support.requires_docstrings decorator is missing

[issue15500] Python should support exporting thread names to the OS

2019-07-03 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue15500> ___ ___ Python-bug

[issue15500] Python should support exporting thread names to the OS

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

[issue37199] Test suite fails when Ipv6 is unavailable

2019-07-01 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14348 pull_request: https://github.com/python/cpython/pull/14535 ___ Python tracker <https://bugs.python.org/issue37

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- components: +Tests nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-29 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14297 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14480 ___ Python tracker <https://bugs.python.org/issu

[issue37446] Undefined behavior in Python/hamt.c

2019-06-28 Thread Zackery Spytz
New submission from Zackery Spytz : ./python -m unittest test.test_context.HamtTest.test_hamt_stress Python/hamt.c:1867:29: runtime error: left shift of 1 by 31 places cannot be represented in type 'int' . -- Ran 1 test

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-06-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14279 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14462 ___ Python tracker <https://bugs.python.org/issu

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-06-28 Thread Zackery Spytz
New submission from Zackery Spytz : As mentioned in bpo-26493, some FormatMessageW() calls use the FORMAT_MESSAGE_FROM_SYSTEM flag without FORMAT_MESSAGE_IGNORE_INSERTS. This will cause FormatMessageW() to fail if there are insert sequences in the message definition. I will create a PR

[issue37419] Possible segfaults when passing large sequences to os.posix_spawn()

2019-06-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14221 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14409 ___ Python tracker <https://bugs.python.org/issu

[issue37419] Possible segfaults when passing large sequences to os.posix_spawn()

2019-06-26 Thread Zackery Spytz
New submission from Zackery Spytz : parse_file_actions() uses an int as it loops over the passed sequence, but it should use a Py_ssize_t. If the sequence is large enough, the int will overflow. -- components: Extension Modules messages: 346669 nosy: ZackerySpytz priority: normal

[issue37412] os.getcwdb() doesn't implement PEP 528 (UTF-8) on Windows

2019-06-26 Thread Zackery Spytz
Zackery Spytz added the comment: See also bpo-32920. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37412> ___ ___ Python-bugs-list m

[issue37393] Deprecation warnings in test_ntpath

2019-06-24 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14174 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14357 ___ Python tracker <https://bugs.python.org/issu

<    1   2   3   4   5   6   7   8   >