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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +11880
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue35991>
___
___
Py
Change by Zackery Spytz :
--
components: +Extension Modules
nosy: +ZackerySpytz
versions: +Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue35
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12050
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Zackery Spytz added the comment:
I've created a PR for this issue.
--
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue24643>
___
___
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12093
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36140>
___
___
Py
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12113
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36150>
___
___
Py
Zackery Spytz added the comment:
I'm sorry. I misunderstood the behavior of Py_BuildValue().
--
___
Python tracker
<https://bugs.python.org/issue36150>
___
___
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12403
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36374>
___
___
Py
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12445
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36398>
___
___
Py
Change by Zackery Spytz :
--
pull_requests: +12446
___
Python tracker
<https://bugs.python.org/issue35284>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12470
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36412>
___
___
Py
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12481
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36421>
___
___
Py
Change by Zackery Spytz :
--
pull_requests: +12484
___
Python tracker
<https://bugs.python.org/issue36421>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12498
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36430>
___
___
Py
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
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12541
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36459>
___
___
Py
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
Change by Zackery Spytz :
--
pull_requests: +12562
___
Python tracker
<https://bugs.python.org/issue35947>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
pull_requests: +12575
___
Python tracker
<https://bugs.python.org/issue36150>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12589
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36504>
___
___
Py
Change by Zackery Spytz :
--
pull_requests: +12605
___
Python tracker
<https://bugs.python.org/issue36504>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12614
stage: test needed -> patch review
___
Python tracker
<https://bugs.python.org/iss
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12652
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33632>
___
___
Py
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
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12694
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36589>
___
___
Py
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
New submission from Zackery Spytz :
The attached PR fixes incorrect usages of %p in format strings.
--
___
Python tracker
<https://bugs.python.org/issue36
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12698
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36594>
___
___
Py
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.
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12773
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue24638>
___
___
Py
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
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12807
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36672>
___
___
Py
Change by Zackery Spytz :
--
pull_requests: +12842
stage: backport needed -> patch review
___
Python tracker
<https://bugs.python.org/issue9194>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12914
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12916
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36745>
___
___
Py
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12926
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue24048>
___
___
Py
Change by Zackery Spytz :
--
pull_requests: +12944
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issue6584>
___
___
Python-
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.
Change by Zackery Spytz :
--
pull_requests: +12948
stage: test needed -> patch review
___
Python tracker
<https://bugs.python.org/issue14546>
___
___
Python-
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
Zackery Spytz added the comment:
The PR has reference leaks.
--
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue13611>
___
___
Python-bug
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12975
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36776>
___
___
Py
Zackery Spytz added the comment:
I'm sorry. I have submitted a fix.
--
___
Python tracker
<https://bugs.python.org/issue36776>
___
___
Python-bugs-list m
Change by Zackery Spytz :
--
pull_requests: +12980
___
Python tracker
<https://bugs.python.org/issue14546>
___
___
Python-bugs-list mailing list
Unsubscribe:
Zackery Spytz added the comment:
See also #29075.
--
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue32592>
___
___
Python-bugs-list mailin
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +12999
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36796>
___
___
Py
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +13090
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36829>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +13119
___
Python tracker
<https://bugs.python.org/issue29779>
___
___
Python-bugs-list mailin
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +13149
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Zackery Spytz :
--
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue32587>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +13166
stage: test needed -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Zackery Spytz added the comment:
I think this change should be backported.
--
___
Python tracker
<https://bugs.python.org/issue24048>
___
___
Python-bugs-list m
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
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +13265
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36935>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +5086
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue31848>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +5468
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue27846>
___
___
Py
Change by Zackery Spytz :
--
nosy: +ZackerySpytz
versions: +Python 3.7, Python 3.8 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue27846>
___
___
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +5502
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue32860>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +5546
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue32500>
___
___
Py
Change by Zackery Spytz :
--
nosy: +ZackerySpytz
versions: +Python 3.8
___
Python tracker
<https://bugs.python.org/issue32500>
___
___
Python-bugs-list mailin
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
Change by Zackery Spytz :
--
pull_requests: +5880
___
Python tracker
<https://bugs.python.org/issue33021>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +5927
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue32941>
___
___
Py
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +6032
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +6171
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +6207
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Zackery Spytz :
--
components: +Library (Lib)
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue33262>
___
___
Python-bugs-list mailin
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +3891
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Zackery Spytz :
--
nosy: +ZackerySpytz
versions: +Python 3.6, Python 3.7 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue25862>
___
___
Change by Zackery Spytz :
--
pull_requests: +6668
___
Python tracker
<https://bugs.python.org/issue23860>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
nosy: +ZackerySpytz
versions: +Python 3.8 -Python 3.4, Python 3.5
___
Python tracker
<https://bugs.python.org/issue23860>
___
___
Zackery Spytz added the comment:
There was already an open issue for this (#31868).
--
nosy: +ZackerySpytz
___
Python tracker
<https://bugs.python.org/issue33
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
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +7008
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33767>
___
___
Py
Zackery Spytz added the comment:
It doesn't look like it. I've updated the PR.
--
___
Python tracker
<https://bugs.python.org/issue33767>
___
___
Change by Zackery Spytz :
--
pull_requests: +7011
___
Python tracker
<https://bugs.python.org/issue30436>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
pull_requests: +7190
___
Python tracker
<https://bugs.python.org/issue33375>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Zackery Spytz :
--
keywords: +patch
pull_requests: +7250
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue30820>
___
___
Py
501 - 600 of 717 matches
Mail list logo