[issue24111] Valgrind suppression file should be updated

2015-05-02 Thread Antony Lee
New submission from Antony Lee: Since PEP445, the suppressions should target _PyObject_{Free,Realloc} instead of PyObject_{Free,Realloc}. -- messages: 242382 nosy: Antony.Lee priority: normal severity: normal status: open title: Valgrind suppression file should be updated versions: Pyth

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Petr Viktorin
Petr Viktorin added the comment: Not true (on 3.3 & 2.7). >>> import sys >>> import x Traceback (most recent call last): File "", line 1, in File "/tmp/x.py", line 1, in import y File "/tmp/y.py", line 1, in 1/0 ZeroDivisionError: division by zero >>> sys.modules['x'] Traceback

[issue24105] Use after free during json encoding a dict (3)

2015-05-02 Thread paul
paul added the comment: @Serhiy: Not all of my bugs are in the same module. Sure, I will group them by module in the future. -- ___ Python tracker ___ _

[issue24066] send_message should take all the addresses in the To: header into account

2015-05-02 Thread Kirill Elagin
Kirill Elagin added the comment: Ah, I’m so dumb. Of course the tests work as there are multiple addresses but still just one field. Here is the test for multiple fields. -- Added file: http://bugs.python.org/file39263/multiple_fields_test.patch ___

[issue24060] Clearify necessities for logging with timestamps

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5ce760e2cc59 by Vinay Sajip in branch '2.7': Issue #24060: Made logging.Formatter documentation a little clearer. https://hg.python.org/cpython/rev/5ce760e2cc59 New changeset 88c141233d1e by Vinay Sajip in branch '3.4': Issue #24060: Made logging.Fo

[issue24105] Use after free during json encoding a dict (3)

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Proposed patch fixes three related issues: issue24094, issue24095 and issue24105. -- assignee: -> serhiy.storchaka keywords: +patch stage: -> patch review versions: +Python 3.5 Added file: http://bugs.python.org/file39264/json_encode_mutated_dict.pa

[issue24112] %b does not work, as a binary output formatter

2015-05-02 Thread Bob Stein
New submission from Bob Stein: `"%b"%42` produces a ValueError exception instead of outputting '101010' Details here: http://stackoverflow.com/a/29997703/673991 -- messages: 242388 nosy: BobStein priority: normal severity: normal status: open title: %b does not work, as a binary output

[issue24112] %b does not work, as a binary output formatter

2015-05-02 Thread Steven D'Aprano
Steven D'Aprano added the comment: This is not a bug, since %b is not supported in Python 2, only in Python 3: https://docs.python.org/2/library/stdtypes.html#string-formatting-operations No new features will be added to 2.7, so if you need %b you can use Python 3, or in Python 2.7 you can use

[issue24112] %b does not work, as a binary output formatter

2015-05-02 Thread Bob Stein
Bob Stein added the comment: Ah, you're right, my mistake. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is simpler reproducer: import codecs class X(str): __class__ = UnicodeEncodeError codecs.ignore_errors(X()) The problem is that PyObject_IsInstance() is fooled by custom __class__, but then builtin error handlers handle error object as having Unic

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +patch Added file: http://bugs.python.org/file39265/codecs_error_handlers_issubclass.patch ___ Python tracker ___

[issue24110] zipfile.ZipFile.write() does not accept bytes arcname

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Ah, I *thought* there was an issue for that, but I didn't find it when I searched. So this is just a doc issue to fix the docs to reflect current reality. -- ___ Python tracker

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Walter Dörwald
Walter Dörwald added the comment: The patch does indeed fix the segmentation fault. However the exception message looks confusing: TypeError: don't know how to handle UnicodeEncodeError in error callback -- ___ Python tracker

[issue24066] send_message should take all the addresses in the To: header into account

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Ah, but that is intentional. Those fields can only appear once per message, per the RFC. The new email API will raise an error if you attempt to add them more than once. Perhaps we should raise an error instead of ignoring the duplicates, given that we are

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch that makes error message consistent with type checking. -- Added file: http://bugs.python.org/file39266/codecs_error_handlers_issubclass_2.patch ___ Python tracker

[issue24066] send_message should take all the addresses in the To: header into account

2015-05-02 Thread Kirill Elagin
Kirill Elagin added the comment: Oh, I see now. It is a good idea to raise an error either in `send_message` or at the moment when a second `To`/`Cc`/`Bcc` header is added to the message. -- resolution: -> not a bug status: open -> closed ___ Pytho

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Walter Dörwald
Walter Dörwald added the comment: Looks much better. However shouldn't: exc->ob_type->tp_name be: Py_TYPE(exc)->tp_name (although there are still many spots in the source that still use ob_type->tp_name) -- ___ Python tracker

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Py_TYPE() is necessary when the argument is not of type PyObject* (e.g. PyUnicodeObject*). -- ___ Python tracker ___

[issue24113] shlex constructor unreachable code

2015-05-02 Thread Michael Smith
New submission from Michael Smith: In its __init__ method, shlex.shlex sets self.debug = 0. An `if self.debug:` statement follows shortly thereafter and without allowing the user to change self.debug. The code inside the if statement is unreachable. Users should either be permitted to set deb

[issue24113] shlex constructor unreachable code

2015-05-02 Thread Michael Smith
Michael Smith added the comment: Hat tip abarnert on StackOverflow for digging in. http://stackoverflow.com/questions/29996208/putting-shlex-in-debug-mode This code was introduced in https://hg.python.org/cpython/rev/81a121d21340 -- ___ Python track

[issue24114] ctypes.utils uninitialized variable 'path'

2015-05-02 Thread Kees Bos
New submission from Kees Bos: In certain corner cases, the ctypes.util can raise an error for a uninitialized variable 'path' when with sunos5 the clre program exists, but fails to return valid output lines. (Also in 2.7.10rc0) -- components: ctypes files: ctypes.util-path.patch keywo

[issue24109] Documentation for difflib uses optparse

2015-05-02 Thread Keith Gray
Keith Gray added the comment: I took a look at Tools/scripts/diff.py and it looks like it got converted to use argparse 9 months ago. I think I should be able to just include that in the difflib documentation directly. My next question is which branches need to have this changed? Do I just mak

[issue24056] Expose closure & generator status in function repr()

2015-05-02 Thread Nick Coghlan
Nick Coghlan added the comment: The main reason I suggest using the postfix parenthetical syntax is to make it clear that we're exposing "behavioural feature flags" for a single underlying type. A prefix syntax would make them look like distinct types, which would be misleading in a different way

[issue24109] Documentation for difflib uses optparse

2015-05-02 Thread Keith Gray
Keith Gray added the comment: Here is the patch. I have tested it against tip. Let me know if you need anything else. -- keywords: +patch Added file: http://bugs.python.org/file39268/issue-24109.patch ___ Python tracker

[issue24109] Documentation for difflib uses optparse

2015-05-02 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.5 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue24109] Documentation for difflib uses optparse

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Since the Tools script was only changed in 3.5 (I was looking at the wrong branch), I think the docs should only be changed for 3.5. -- stage: -> commit review versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___

[issue24056] Expose closure & generator status in function repr()

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Although I like the look of the repr Terry proposes better, I agree with Nick: it would imply that the types were distinct, which they are not. -- nosy: +r.david.murray ___ Python tracker

[issue24115] PyObject_IsInstance() and PyObject_IsSubclass() can fail

2015-05-02 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: PyObject_IsInstance() and PyObject_IsSubclass() cat return 0, 1, or -1. But some code use "if (PyObject_IsInstance(...))" or "if (!PyObject_IsInstance(...))". This should be fixed. -- assignee: serhiy.storchaka components: Extension Modules, Interp

[issue24099] Use after free in siftdown (1)

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 813854f49f9d by Raymond Hettinger in branch '3.4': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/813854f49f9d -- nosy: +python-dev ___ Python tracke

[issue24101] Use after free in siftup

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 813854f49f9d by Raymond Hettinger in branch '3.4': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/813854f49f9d -- nosy: +python-dev ___ Python tracke

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 813854f49f9d by Raymond Hettinger in branch '3.4': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/813854f49f9d -- nosy: +python-dev ___ Python tracke

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread R. David Murray
R. David Murray added the comment: OK, I can't reproduce it either, neither in python3 nor python2. Brett, is this left over from a long time ago? Heh. I just tried another experiment and got an interesting result: rdmurray@pydev:~/python/p34>cat temp1.py import temp2 foo = 1 rdmurray@pydev:

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It would be nice to add tests based on provided demo scripts. -- ___ Python tracker ___ ___ Python

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Note that calling reload on temp1.temp2 will fail with an error that temp2 is not in sys.modules. So maybe the caveat needs rewording rather than deletion. -- ___ Python tracker

[issue24101] Use after free in siftup

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d356e68de236 by Raymond Hettinger in branch '2.7': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/d356e68de236 -- ___ Python tracker

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d356e68de236 by Raymond Hettinger in branch '2.7': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/d356e68de236 -- ___ Python tracker

[issue24099] Use after free in siftdown (1)

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d356e68de236 by Raymond Hettinger in branch '2.7': Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. https://hg.python.org/cpython/rev/d356e68de236 -- ___ Python tracker

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Eric Snow
Eric Snow added the comment: Either the docs are out-of-date or they are really poorly worded. Most likely it's the former, but I'm taking a look. -- ___ Python tracker ___ ___

[issue23088] Document that PyUnicode_AsUTF8() returns a null-terminated string

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Added some review comments. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Eric Snow
Eric Snow added the comment: I've verified that the documentation is correct under Python 2.3. The behavior changed under Python 2.4 (and the docs were not updated). I expect that the change in behavior is an unintended consequence of a change in the import system for 2.4. There were 7 in 2

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread R. David Murray
Changes by R. David Murray : -- stage: -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Eric Snow
Eric Snow added the comment: I'm pretty sure this is the culprit: changeset: 32882:331e60d8ce6da19b168849418776fea0940787ec branch: legacy-trunk user:Tim Peters date:Mon Aug 02 03:52:12 2004 + summary: PyImport_ExecCodeModuleEx(): remove module from sys.modules i

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Eric Snow
Eric Snow added the comment: patch LGTM for the 3 branches. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3cdeafd18e61 by R David Murray in branch '3.4': #24081: Remove obsolete caveat from import docs. https://hg.python.org/cpython/rev/3cdeafd18e61 New changeset d57e0c6d292d by R David Murray in branch 'default': Merge: #24081: Remove obsolete caveat f

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Thanks, Petr. (And Eric.) -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue24108] fnmatch.translate('*.txt') fails

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset c5c65ef84a77 by R David Murray in branch '3.4': #24108: Update fnmatch.translate example to show correct output. https://hg.python.org/cpython/rev/c5c65ef84a77 New changeset cc6aed8ecb0d by R David Murray in branch 'default': Merge: #24108: Update f

[issue24108] fnmatch.translate('*.txt') fails

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Thanks Christophe and Merlijn. -- nosy: +r.david.murray resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 2.7, Python 3.5 ___ Python tracker _

[issue21327] socket.type value changes after using settimeout()

2015-05-02 Thread R. David Murray
R. David Murray added the comment: The behavior of s.type has changed in 3.5: it now behaves like the proposed new method behaves. Looking at the source I can't figure out why this is so. It doesn't seem as though it should be, but this needs to be sorted out before we can proceed.

[issue21327] socket.type value changes after using settimeout()

2015-05-02 Thread R. David Murray
R. David Murray added the comment: Wait, I take it back. I must have run the test incorrectly. -- ___ Python tracker ___ ___ Python-b

[issue24068] statistics module - incorrect results with boolean input

2015-05-02 Thread Wolfgang Maier
Wolfgang Maier added the comment: uploading an alternate, possibly slightly clearer version of the patch -- Added file: http://bugs.python.org/file39269/statistics._sum.v2.patch ___ Python tracker _

[issue21327] socket.type value changes after using settimeout()

2015-05-02 Thread R. David Murray
R. David Murray added the comment: I added some review comments. Something I don't understand: if settimeout sets NONBLOCK, and CLOEXEC is always set now, why does s=socket.socket() yield something whose type is SOCK_STREAM, while settimeout causes type to change? I don't understand the rela

[issue24091] Use after free in Element.extend (1)

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch that fixes issue24091, issue24092, issue24093, and several other similar bugs. -- assignee: -> serhiy.storchaka keywords: +patch stage: -> patch review versions: +Python 3.5 Added file: http://bugs.python.org/file39270/etree_crashes.

[issue24093] Use after free in Element.remove

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch for issue24091 fixes this issue. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Use after free in Element.extend (1) ___ Python tracker

[issue24092] Use after free in Element.extend (2)

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch for issue24091 fixes this issue. -- resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> Use after free in Element.extend (1) ___ Python tracker

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Eric Snow added the comment: Here's an updated patch with "_pathy.py" changed to "_bootstrap_external.py" (and similar changes with freezing). The patch does not include fixing the venv test (i.e. the bundled pip). Also, I'll be adding a note to NEWS. -- Added file: http://bugs.pytho

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Eric Snow added the comment: As I mentioned, I'm pretty sure that the failing venv test is due to the bundled pip. Here's the test output: test test_venv failed -- Traceback (most recent call last): File "/home/esnow/projects/cpython/Lib/test/test_venv.py", line 356, in test_with_pip wi

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Eric Snow added the comment: Looks like setuptool's pkg_resources is directly importing importlib._bootstrap. I've filed a bug: https://bitbucket.org/pypa/setuptools/issue/378. In the meantime, what are our options for getting that test passing? -- _

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: Go ahead and add tests if you like. I don't see the point. The fix was to simply backport code that was already in Py3.5. and the code exercised by the exploit scripts is no longer there. -- ___ Python tracker

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Eric Snow added the comment: Here's the correct patch. -- Added file: http://bugs.python.org/file39272/path-based-importlib.diff ___ Python tracker ___ __

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file39271/path-based-importlib.diff ___ Python tracker ___ ___ Python-bugs-list ma

[issue2292] Missing *-unpacking generalizations

2015-05-02 Thread Thomas Wouters
Thomas Wouters added the comment: The latest patch looks good to me. No need to do the additional AST refactoring if it's going to make PEP 492's implementor's life harder (but I do read Guido's comment as a reason to check this in sooner rather than later :>) So, unless anyone objects I'll ch

[issue24081] Obsolete caveat in reload() docs

2015-05-02 Thread Nick Coghlan
Nick Coghlan added the comment: I vaguely recall discussing that change, and my recollection is that it was deliberate in order to evict improperly configured modules - we didn't count it as a significant compatibility break because it solely affected an error handling path. I guess we never tho

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Nick Coghlan
Nick Coghlan added the comment: As a compatibility hack for setuptools versions with the issue, I'd suggest making importlib._bootstrap.setup alias SourceFileLoader back into importlib._bootstrap, with an explanation and link to back to this issue in a comment. -- __

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Eric Snow added the comment: Gah. I had tried exactly that but did it in the wrong spot. Here's an updated patch which fixes the test. -- Added file: http://bugs.python.org/file39273/path-based-importlib.diff ___ Python tracker

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file39273/path-based-importlib.diff ___ Python tracker ___ ___ Python-bugs-list ma

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : Added file: http://bugs.python.org/file39274/path-based-importlib.diff ___ Python tracker ___ ___ Python-bugs-list mail

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : Added file: http://bugs.python.org/file39275/path-based-importlib.diff ___ Python tracker ___ ___ Python-bugs-list mail

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file39274/path-based-importlib.diff ___ Python tracker ___ ___ Python-bugs-list ma

[issue2292] Missing *-unpacking generalizations

2015-05-02 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for the review Thomas! And yes, that's what I meant. :-) -- ___ Python tracker ___ ___ Pytho

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: I should add that the crasher scripts share common features and could perhaps be built into a unified test tool. Also, some care should be taken to make the tool mostly independent of non-guaranteed "del" behavior or CPython specific ref-counting logic to

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 02e3bf65b2f8 by Eric Snow in branch 'default': Issue #23911: Move path-based bootstrap code to a separate frozen module. https://hg.python.org/cpython/rev/02e3bf65b2f8 -- nosy: +python-dev ___ Python trac

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-05-02 Thread Eric Snow
Changes by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue24018] add a Generator ABC

2015-05-02 Thread Guido van Rossum
Guido van Rossum added the comment: Yeah, looks good -- Łuke, can you commit this? -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue2292] Missing *-unpacking generalizations

2015-05-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: It certainly would be nice to have documentation. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue1182143] making builtin exceptions more informative

2015-05-02 Thread George Jenkins
George Jenkins added the comment: Heh, just noticed this issue passed its 10 year anniversary! If someone has time to review my patch, that would be much appreciated. Thanks! -- ___ Python tracker __

[issue24094] Use after free during json encoding (PyType_IsSubtype)

2015-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e8c9cf1fede by Benjamin Peterson in branch '3.3': just sort the items tuple directly (closes #24094) https://hg.python.org/cpython/rev/0e8c9cf1fede New changeset f9027b10b3c4 by Benjamin Peterson in branch '3.4': merge 3.3 (#24094) https://hg.pytho

[issue24089] argparse crashes with AssertionError

2015-05-02 Thread paul j3
paul j3 added the comment: It's the spaces and/or brackets in the metavar, along with a usage line that is long enough to wrap, that is raising this error. It's a known problem. http://bugs.python.org/issue11874 -- nosy: +paul.j3 ___ Python tracker

[issue24045] Behavior of large returncodes (sys.exit(nn))

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14376] sys.exit documents argument as "integer" but actually requires "subtype of int"

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24052] sys.exit(code) returns "success" to the OS for some nonzero values of code

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue23955] Add python.ini file for embedded/applocal installs

2015-05-02 Thread Steve Dower
Steve Dower added the comment: Added a patch that: * adds the applocal option to pyvenv.cfg * updates the docs to describe how pyvenv.cfg (home and applocal) affect sys.path * puts a default pyvenv.cfg in the ZIP distribution * adds significantly more buffer overflow protection to getpathp.c *

[issue24068] statistics module - incorrect results with boolean input

2015-05-02 Thread Mark Dickinson
Mark Dickinson added the comment: > I wonder if it would be better to reject Bool data in this context? It's not uncommon (and quite useful) in NumPy world to compute basic statistics on arrays of boolean dtype: the sum of such an array gives a count of the `True`s, and the mean gives the prop

[issue20357] Mention buildbots in the core dev section of the devguide

2015-05-02 Thread Mark Lawrence
Mark Lawrence added the comment: I couldn't see anything obvious in the devguide so I'm assuming that still needs doing. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue10965] dev task of documenting undocumented APIs

2015-05-02 Thread Mark Lawrence
Mark Lawrence added the comment: Where do we stand on this as #10224 has been closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue24092] Use after free in Element.extend (2)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24091] Use after free in Element.extend (1)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24093] Use after free in Element.remove

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24094] Use after free during json encoding (PyType_IsSubtype)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24095] Use after free during json encoding a dict (2)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24096] Use after free in get_filter

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24097] Use after free in PyObject_GetState

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24098] Multiple use after frees in obj2ast_* methods

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20749] shutil.unpack_archive(): security concerns not documented

2015-05-02 Thread Mark Lawrence
Mark Lawrence added the comment: If there is an agreed standard for security warnings I'll prepare a patch for this. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker _

[issue24099] Use after free in siftdown (1)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24100] Use after free in siftdown (2)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24101] Use after free in siftup

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24102] Multiple type confusions in unicode error handlers

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24103] Use after free in xmlparser_setevents (1)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24104] Use after free in xmlparser_setevents (2)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24105] Use after free during json encoding a dict (3)

2015-05-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

  1   2   >