[issue15490] Correct __sizeof__ support for StringIO

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10395] new os.path function to extract common prefix based on path components

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6975] symlinks incorrectly resolved on Linux

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15999] Using new 'bool' format character

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6083] Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16061] performance regression in string replace for 3.3

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15475] Correct __sizeof__ support for itertools

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13968] Support recursive globs

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15696] Correct __sizeof__ support for mmap

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16801] Preserve original representation for integers / floats in docstrings

2012-12-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: It seems to me that the real issue is not to preserve the original representation. What if the original author specified mode as 438 or calculated it as 0o600|0o60|0o6 ? He might and we should still like to see it as 0o666. So the real issue is to specify the

[issue16812] os.symlink can return wrong FileExistsError/WindowsError information

2012-12-29 Thread Andrew
Andrew added the comment: I tested this on FreeBSD 9.1, and the error message is correct there. -- ___ Python tracker ___ ___ Python-b

[issue16434] SocketServer call shutdown in the wrong way

2012-12-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Move to pending until additional info will be provided. Required short test to reproduce the problem. -- status: open -> pending ___ Python tracker

[issue994421] logging module prints unexpected message when no handler set

2012-12-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Update: It appears that in at least 3.2+ (but not 2.7), loggers have a default handler, making the no-handler behavior moot. In any case, the example code prints 'one' and 'two' instead of the message. -- nosy: +terry.reedy ___

[issue16731] xxlimited/xxmodule docstrings ambiguous

2012-12-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16076] xml.etree.ElementTree.Element and xml.etree.ElementTree.TreeBuilder are no longer pickleable

2012-12-29 Thread Eli Bendersky
Eli Bendersky added the comment: I think I understand what's going on there. Pickle, to make sure an object can be picked, looks at the module it comes from and tries to import its class, to make sure they're the same. What happens since 3.3 is that for the Python Element class, it imports El

[issue15083] Rewrite ElementTree tests in a cleaner and safer way

2012-12-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16076] xml.etree.ElementTree.Element and xml.etree.ElementTree.TreeBuilder are no longer pickleable

2012-12-29 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

2012-12-29 Thread Daniel Shahaf
Changes by Daniel Shahaf : -- nosy: +danielsh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

2012-12-29 Thread Eli Bendersky
New submission from Eli Bendersky: http://mail.python.org/pipermail/python-dev/2012-December/123368.html This came up while investigating some test-order-dependency failures in issue 16076. test___all__ goes over modules that have `__all__` in them and does 'from import *' on them. This leaves

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

2012-12-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16741] `int()`, `float()`, etc think python strings are null-terminated

2012-12-29 Thread Matthew Barnett
Matthew Barnett added the comment: I've attached a patch. It now reports an invalid literal as-is: >>> int("#\N{ARABIC-INDIC DIGIT ONE}") Traceback (most recent call last): File "", line 1, in int("#\N{ARABIC-INDIC DIGIT ONE}") ValueError: invalid literal for int() with base 10: '#١' >>>

[issue16808] inspect.stack() should return list of named tuples

2012-12-29 Thread Daniel Shahaf
Daniel Shahaf added the comment: Add versionchanged per review. -- keywords: +patch Added file: http://bugs.python.org/file28488/inspect-v2.diff ___ Python tracker ___ __

[issue16814] use --directory option of make in describing how to build the docs

2012-12-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: Another option is to give the shorter option as an alternative. I for one didn't know about that option but would have liked to. Patch attached. Also, this way we can give the shorter option and the reader can still see pretty easily what it is for. ---

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

2012-12-29 Thread R. David Murray
R. David Murray added the comment: As Nick pointed out in the thread, getting the correct module imports for C and python versions is what import_fresh_module in test.support is for. -- nosy: +r.david.murray ___ Python tracker

[issue16814] use --directory option of make in describing how to build the docs

2012-12-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: > Another option is to give the shorter option as an alternative. s/shorter option/one-liner/ -- ___ Python tracker ___ ___

[issue16741] `int()`, `float()`, etc think python strings are null-terminated

2012-12-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti, haypo stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

2012-12-29 Thread Eli Bendersky
Eli Bendersky added the comment: Yes, but pickle doesn't use this helper function. And the problem is because *pickle* tries to __import__ this module. -- ___ Python tracker ___

[issue16816] Bug in hash randomization

2012-12-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: You're relying on the iteration order of dictionaries being consistent. That's a bug in your program. -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker

[issue16818] Couple of mistakes in PEP 431

2012-12-29 Thread Ramchandra Apte
New submission from Ramchandra Apte: in PEP 431, Time zone support improvements "NonExistentTimeError This exception is raised when giving a datetime specification that are ambigious while setting is_dst to None:" it should be "that is non-existent" or similar. The same description is used for

[issue16814] use --directory option of make in describing how to build the docs

2012-12-29 Thread Georg Brandl
Georg Brandl added the comment: This is not a `make' tutorial... -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue13657] IDLE doesn't support sys.ps1 and sys.ps2.

2012-12-29 Thread Ramchandra Apte
Ramchandra Apte added the comment: Buump... -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

<    1   2