[issue21360] mailbox.Maildir should ignore files named with a leading dot

2019-02-12 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/is

[issue35991] potential double free in Modules/_randommodule.c line 295 and line 317

2019-02-13 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +11880 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35991> ___ ___ Py

[issue35991] potential double free in Modules/_randommodule.c line 295 and line 317

2019-02-14 Thread Zackery Spytz
Change by Zackery Spytz : -- components: +Extension Modules nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue24643] VS 2015 pyconfig.h #define timezone _timezone conflicts with timeb.h

2019-02-24 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12050 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue24643] VS 2015 pyconfig.h #define timezone _timezone conflicts with timeb.h

2019-02-24 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue24643> ___ ___

[issue36140] An incorrect check in _msi.c's msidb_getsummaryinformation()

2019-02-27 Thread Zackery Spytz
New submission from Zackery Spytz : msidb_getsummaryinformation() checks the wrong variable after calling PyObject_NEW(). -- components: Windows messages: 336776 nosy: ZackerySpytz, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: An

[issue36140] An incorrect check in _msi.c's msidb_getsummaryinformation()

2019-02-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12093 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36140> ___ ___ Py

[issue36150] Possible assertion failures due to _ctypes.c's PyCData_reduce()

2019-02-28 Thread Zackery Spytz
New submission from Zackery Spytz : The PyBytes_FromStringAndSize() and PyObject_GetAttrString() calls in PyCData_reduce() are not checked for failure. -- components: Extension Modules, ctypes messages: 336866 nosy: ZackerySpytz priority: normal severity: normal status: open title

[issue36150] Possible assertion failures due to _ctypes.c's PyCData_reduce()

2019-02-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12113 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36150> ___ ___ Py

[issue36150] Possible assertion failures due to _ctypes.c's PyCData_reduce()

2019-03-02 Thread Zackery Spytz
Zackery Spytz added the comment: I'm sorry. I misunderstood the behavior of Py_BuildValue(). -- ___ Python tracker <https://bugs.python.org/issue36150> ___ ___

[issue36374] A possible null pointer dereference in compile.c's merge_consts_recursive()

2019-03-19 Thread Zackery Spytz
New submission from Zackery Spytz : If PyDict_SetDefault() fails in merge_consts_recursive(), Py_INCREF() will be called on a null pointer. -- components: Interpreter Core messages: 338411 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible null pointer

[issue36374] A possible null pointer dereference in compile.c's merge_consts_recursive()

2019-03-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12403 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36374> ___ ___ Py

[issue36398] A possible crash in structseq.c's structseq_repr()

2019-03-21 Thread Zackery Spytz
New submission from Zackery Spytz : If the first PyUnicode_DecodeUTF8() call fails in structseq_repr(), _PyUnicodeWriter_Dealloc() will be called on an uninitialized _PyUnicodeWriter. -- components: Interpreter Core messages: 338584 nosy: ZackerySpytz priority: normal severity: normal

[issue36398] A possible crash in structseq.c's structseq_repr()

2019-03-21 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12445 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36398> ___ ___ Py

[issue35284] Incomplete error handling in Python/compile.c:compiler_call()

2019-03-22 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12446 ___ Python tracker <https://bugs.python.org/issue35284> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36412] A possible crash in dictobject.c's new_dict()

2019-03-23 Thread Zackery Spytz
New submission from Zackery Spytz : PyDict_New() calls new_dict() with the "empty_values" array. If the PyObject_GC_New() call in new_dict() fails, new_dict() will call PyMem_FREE() on this array, causing a crash. -- components: Interpreter Core messages: 338711 nosy: Za

[issue36412] A possible crash in dictobject.c's new_dict()

2019-03-23 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12470 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36412> ___ ___ Py

[issue36421] A possible double decref in _ctypes.c's PyCArrayType_new()

2019-03-24 Thread Zackery Spytz
New submission from Zackery Spytz : In PyCArrayType_new(), type_attr is assigned to stgdict->proto. If the PyDict_Update() call fails in that function, type_attr will be decrefed an extra time when stgdict is deallocated. I'll create a PR for this issue. -- components: E

[issue36421] A possible double decref in _ctypes.c's PyCArrayType_new()

2019-03-24 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12481 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36421> ___ ___ Py

[issue36421] A possible double decref in _ctypes.c's PyCArrayType_new()

2019-03-25 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12484 ___ Python tracker <https://bugs.python.org/issue36421> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36430] A possible reference leak in itertools.count()

2019-03-25 Thread Zackery Spytz
New submission from Zackery Spytz : "long_step" is leaked in itertools_count_impl() if the type->tp_alloc() call fails. -- components: Extension Modules messages: 338853 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible refe

[issue36430] A possible reference leak in itertools.count()

2019-03-25 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12498 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36430> ___ ___ Py

[issue36447] test__xxsubinterpreters leaked references and memory blocks

2019-03-27 Thread Zackery Spytz
Change by Zackery Spytz : -- title: test__xxsubinterpreters leaked regards and memory blocks -> test__xxsubinterpreters leaked references and memory blocks ___ Python tracker <https://bugs.python.org/issu

[issue36459] A possible double PyMem_FREE() due to tokenizer.c's tok_nextc()

2019-03-27 Thread Zackery Spytz
New submission from Zackery Spytz : Commit cb90c89de14aab636739b3e810cf949e47b54a0c added a PyMem_FREE(tok->buf) call in tok_nextc() if a PyMem_REALLOC() call fails. This will cause a double free when PyTokenizer_Free() is called on the tokenizer state. -- components: Interpre

[issue36459] A possible double PyMem_FREE() due to tokenizer.c's tok_nextc()

2019-03-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12541 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36459> ___ ___ Py

[issue36150] Possible assertion failures due to _ctypes.c's PyCData_reduce()

2019-03-29 Thread Zackery Spytz
Zackery Spytz added the comment: I again encountered an assertion failure that involved PyCData_reduce(). In that function, PyBytes_FromStringAndSize() may be evaluated before PyObject_GetAttrString(). If a MemoryError occurs in PyBytes_FromStringAndSize(), an assertion failure will occur

[issue35947] Update libffi_msvc to current version of libffi

2019-03-30 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12562 ___ Python tracker <https://bugs.python.org/issue35947> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36150] Possible assertion failures due to _ctypes.c's PyCData_reduce()

2019-03-31 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12575 ___ Python tracker <https://bugs.python.org/issue36150> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36504] Signed integer overflow in _ctypes.c's PyCArrayType_new()

2019-04-02 Thread Zackery Spytz
New submission from Zackery Spytz : Signed integer overflow can occur in the overflow check in PyCArrayType_new() if "itemsize" is large enough. -- components: Extension Modules, ctypes messages: 339326 nosy: ZackerySpytz priority: normal severity: normal status: open tit

[issue36504] Signed integer overflow in _ctypes.c's PyCArrayType_new()

2019-04-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12589 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36504> ___ ___ Py

[issue36504] Signed integer overflow in _ctypes.c's PyCArrayType_new()

2019-04-03 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12605 ___ Python tracker <https://bugs.python.org/issue36504> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9194] winreg:fixupMultiSZ should check that P < Q in the inner loop

2019-04-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12614 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/iss

[issue9194] winreg:fixupMultiSZ should check that P < Q in the inner loop

2019-04-04 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz, eryksun versions: +Python 3.7, Python 3.8 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/i

[issue33632] undefined behaviour: signed integer overflow in threadmodule.c

2019-04-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12652 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue33632> ___ ___ Py

[issue33632] undefined behaviour: signed integer overflow in threadmodule.c

2019-04-08 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR based on Martin Panter's patch. -- components: +Extension Modules -Library (Lib) nosy: +ZackerySpytz versions: -Python 3.6 ___ Python tracker <https://bugs.python.o

[issue36589] Incorrect error handling in curses.update_lines_cols()

2019-04-10 Thread Zackery Spytz
New submission from Zackery Spytz : update_lines_cols() returns 0 if an error occurs, but the generated AC code checks for a return value of -1. -- components: Extension Modules messages: 339881 nosy: ZackerySpytz priority: normal severity: normal status: open title: Incorrect error

[issue36589] Incorrect error handling in curses.update_lines_cols()

2019-04-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12694 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36589> ___ ___ Py

[issue36594] Undefined behavior due to incorrect usage of %p in format strings

2019-04-10 Thread Zackery Spytz
Change by Zackery Spytz : -- components: Extension Modules, Interpreter Core nosy: ZackerySpytz priority: normal severity: normal status: open title: Undefined behavior due to incorrect usage of %p in format strings versions: Python 2.7, Python 3.7, Python 3.8

[issue36594] Undefined behavior due to incorrect usage of %p in format strings

2019-04-10 Thread Zackery Spytz
New submission from Zackery Spytz : The attached PR fixes incorrect usages of %p in format strings. -- ___ Python tracker <https://bugs.python.org/issue36

[issue36594] Undefined behavior due to incorrect usage of %p in format strings

2019-04-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12698 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36594> ___ ___ Py

[issue36549] str.capitalize should titlecase the first character not uppercase

2019-04-12 Thread Zackery Spytz
Zackery Spytz added the comment: I think that the PR may have been merged too quickly. Serhiy had made a list, and I think that the PR was missing some necessary changes. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.

[issue24638] asyncio "loop argument must agree with future" error message could be improved

2019-04-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12773 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue24638> ___ ___ Py

[issue24638] asyncio "loop argument must agree with future" error message could be improved

2019-04-15 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- components: +asyncio nosy: +ZackerySpytz, asvetlov, yselivanov versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/is

[issue36672] A compiler warning in winreg.SetValue()

2019-04-20 Thread Zackery Spytz
New submission from Zackery Spytz : The warning can be seen on some buildbots (e.g. https://buildbot.python.org/all/#/builders/12/builds/2269). d:\buildarea\3.x.ware-win81-release\build\pc\winreg.c(1617): warning C4244: 'function': conversion from 'Py_ssize_clean_t' to &#

[issue36672] A compiler warning in winreg.SetValue()

2019-04-20 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12807 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36672> ___ ___ Py

[issue9194] winreg:fixupMultiSZ should check that P < Q in the inner loop

2019-04-22 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12842 stage: backport needed -> patch review ___ Python tracker <https://bugs.python.org/issue9194> ___ ___ Py

[issue24758] unittest.mock.Mock's new "unsafe" feature needs a better error message

2019-04-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12914 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue24758] unittest.mock.Mock's new "unsafe" feature needs a better error message

2019-04-27 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/is

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread Zackery Spytz
New submission from Zackery Spytz : If the PyUnicode_AsUTF8() call happens to fail in PyObject_SetAttr(), "name" will be leaked. -- components: Interpreter Core messages: 341025 nosy: ZackerySpytz priority: normal severity: normal status: open title: A possible referen

[issue36745] A possible reference leak in PyObject_SetAttr()

2019-04-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12916 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36745> ___ ___ Py

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

2019-04-29 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 -Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/is

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

2019-04-29 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12926 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue24048> ___ ___ Py

[issue6584] gzip module has no custom exception

2019-04-30 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12944 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue6584> ___ ___ Python-

[issue6584] gzip module has no custom exception

2019-04-30 Thread Zackery Spytz
Zackery Spytz added the comment: I'd like to see this issue move forward, so I've created a PR. -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.4 ___ Python tracker <https://bugs.python.

[issue14546] lll.py can't handle multiple parameters correctly

2019-04-30 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12948 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issue14546> ___ ___ Python-

[issue14546] lll.py can't handle multiple parameters correctly

2019-04-30 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue (with a test). -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 -Python 3.2, Python 3.3 ___ Python tracker <https://bugs.python.org/is

[issue13611] Integrate ElementC14N module into xml.etree package

2019-05-01 Thread Zackery Spytz
Zackery Spytz added the comment: The PR has reference leaks. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue13611> ___ ___ Python-bug

[issue36776] test_tools: test_lll_multiple_dirs() failed on AMD64 Windows7 SP1 3.x

2019-05-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12975 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36776> ___ ___ Py

[issue36776] test_tools: test_lll_multiple_dirs() failed on AMD64 Windows7 SP1 3.x

2019-05-02 Thread Zackery Spytz
Zackery Spytz added the comment: I'm sorry. I have submitted a fix. -- ___ Python tracker <https://bugs.python.org/issue36776> ___ ___ Python-bugs-list m

[issue14546] lll.py can't handle multiple parameters correctly

2019-05-02 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +12980 ___ Python tracker <https://bugs.python.org/issue14546> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32592] Drop support of Windows Vista in Python 3.7

2019-05-04 Thread Zackery Spytz
Zackery Spytz added the comment: See also #29075. -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue32592> ___ ___ Python-bugs-list mailin

[issue36796] Error handling cleanup in _testcapimodule.c

2019-05-04 Thread Zackery Spytz
New submission from Zackery Spytz : Many functions in _testcapimodule.c lack error handling. This can cause spurious errors when stress testing the interpreter. -- components: Extension Modules messages: 341399 nosy: ZackerySpytz priority: normal severity: normal status: open title

[issue36796] Error handling cleanup in _testcapimodule.c

2019-05-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12999 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36796> ___ ___ Py

[issue36829] CLI option to make PyErr_WriteUnraisable abort the current process

2019-05-07 Thread Zackery Spytz
Zackery Spytz added the comment: I am working on this issue. -- nosy: +ZackerySpytz title: CLI option to make PyErr_WriteUnraisable abortthe current process -> CLI option to make PyErr_WriteUnraisable abort the current process ___ Python trac

[issue36829] CLI option to make PyErr_WriteUnraisable abort the current process

2019-05-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13090 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36829> ___ ___ Py

[issue29779] New environment variable PYTHONHISTORY

2019-05-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13119 ___ Python tracker <https://bugs.python.org/issue29779> ___ ___ Python-bugs-list mailin

[issue32587] Make REG_MULTI_SZ support PendingFileRenameOperations

2019-05-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13149 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue32587] Make REG_MULTI_SZ support PendingFileRenameOperations

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

[issue27805] io.open('/dev/stdout', 'a') raises OSError with errno=ESPIPE

2019-05-11 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13166 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue27805] io.open('/dev/stdout', 'a') raises OSError with errno=ESPIPE

2019-05-11 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue27

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

2019-05-13 Thread Zackery Spytz
Zackery Spytz added the comment: I think this change should be backported. -- ___ Python tracker <https://bugs.python.org/issue24048> ___ ___ Python-bugs-list m

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-05-13 Thread Zackery Spytz
Zackery Spytz added the comment: Thank you for the comments. I've updated the PR. > winreg.SetValueEx can create the value. We just need to add a case to > test_case in Lib/test/test_winreg.py, such as the following: test_case? I think you mea

[issue36935] bpo-35813 introduced usage of the deprecated PyErr_SetFromWindowsErrWithUnicodeFilename() function

2019-05-15 Thread Zackery Spytz
New submission from Zackery Spytz : In e895de3e7f3cc2f7213b87621cfe9812ea4343f0 / bpo-35813, the deprecated function PyErr_SetFromWindowsErrWithUnicodeFilename() was added in two functions in Modules/_winapi.c. This function was deprecated in 3.3 (and all occurrences of it were removed

[issue36935] bpo-35813 introduced usage of the deprecated PyErr_SetFromWindowsErrWithUnicodeFilename() function

2019-05-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13265 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36935> ___ ___ Py

[issue31848] "aifc" module does not always initialize "Aifc_read._ssnd_chunk"

2018-01-18 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5086 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue31848> ___ ___ Py

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5468 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue27846> ___ ___ Py

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue27846> ___ ___

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5502 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32860> ___ ___ Py

[issue32500] PySequence_Length() raises TypeError on dict type

2018-02-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5546 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32500> ___ ___ Py

[issue32500] PySequence_Length() raises TypeError on dict type

2018-02-19 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue32500> ___ ___ Python-bugs-list mailin

[issue31848] "aifc" module does not always initialize "Aifc_read._ssnd_chunk"

2018-02-19 Thread Zackery Spytz
Change by Zackery Spytz : -- components: -Tests nosy: +ZackerySpytz type: crash -> behavior versions: +Python 2.7, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue33021] Some fstat() calls do not release the GIL, possibly hanging all threads

2018-03-14 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +5880 ___ Python tracker <https://bugs.python.org/issue33021> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33021] Some fstat() calls do not release the GIL, possibly hanging all threads

2018-03-14 Thread Zackery Spytz
Zackery Spytz added the comment: Commit 4484f9dca9149da135bbae035f10a50d20d1cbbb causes GCC 7.2.0 to emit a warning. cpython/Modules/mmapmodule.c: In function ‘new_mmap_object’: cpython/Modules/mmapmodule.c:1126:18: warning: ‘fstat_result’ may be used uninitialized in this function [-Wmaybe

[issue32941] mmap should expose madvise()

2018-03-20 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5927 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32941> ___ ___ Py

[issue23495] The writer.writerows method should be documented as accepting any iterable (not only a list)

2018-03-30 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +6032 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue23495] The writer.writerows method should be documented as accepting any iterable (not only a list)

2018-03-30 Thread Zackery Spytz
Zackery Spytz added the comment: Commit 7901b48a1f89b9bfa9d111ae3725400b466a9baa removed the unnecessary list conversion (3.5+), but the documentation issue remains. -- nosy: +ZackerySpytz versions: +Python 3.6, Python 3.7, Python 3.8 -Python 3.4, Python 3.5

[issue33270] tags for anonymous code objects should be interned

2018-04-14 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +6171 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33262] Deprecate shlex.split(None) to read from stdin.

2018-04-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +6207 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33262] Deprecate shlex.split(None) to read from stdin.

2018-04-17 Thread Zackery Spytz
Change by Zackery Spytz : -- components: +Library (Lib) nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue33262> ___ ___ Python-bugs-list mailin

[issue25862] TextIOWrapper assertion failure after read() and SEEK_CUR

2017-10-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +3891 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue25862] TextIOWrapper assertion failure after read() and SEEK_CUR

2017-11-07 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.6, Python 3.7 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue25862> ___ ___

[issue23860] Failure to check return value from lseek() in Modules/mmapmodule.c

2018-05-20 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +6668 ___ Python tracker <https://bugs.python.org/issue23860> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23860] Failure to check return value from lseek() in Modules/mmapmodule.c

2018-05-20 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue23860> ___ ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-05-20 Thread Zackery Spytz
Zackery Spytz added the comment: There was already an open issue for this (#31868). -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue33

[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz
New submission from Zackery Spytz : Both mmap_concat() and mmap_repeat() raise a SystemError when invoked. -- components: Extension Modules messages: 318623 nosy: ZackerySpytz priority: normal severity: normal status: open title: Improper use of SystemError in the mmap module type

[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +7008 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue33767> ___ ___ Py

[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz
Zackery Spytz added the comment: It doesn't look like it. I've updated the PR. -- ___ Python tracker <https://bugs.python.org/issue33767> ___ ___

[issue30436] importlib.find_spec raises AttributeError when parent is not a package/module

2018-06-03 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +7011 ___ Python tracker <https://bugs.python.org/issue30436> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33375] warnings: get filename from frame.f_code.co_filename

2018-06-09 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +7190 ___ Python tracker <https://bugs.python.org/issue33375> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30820] email.contentmanager.raw_data_manager fails to create multipart messages

2018-06-11 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +7250 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue30820> ___ ___ Py

<    1   2   3   4   5   6   7   8   >