[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

[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

[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

[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

[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 ___

[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

[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 ___ ___

[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. 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. ---

[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 ___ __

[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: '#١' >>>

[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

[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 Daniel Shahaf
Changes by Daniel Shahaf : -- nosy: +danielsh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[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.

[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 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

[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

[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 ___

[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

[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

[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

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[issue8745] zipimport is a bit slow

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

[issue9720] zipfile writes incorrect local file header for large files in zip64

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

[issue15989] Possible integer overflow of PyLong_AsLong() results

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

[issue11344] Add os.path.splitpath(path) function

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

[issue16569] Preventing errors of simultaneous access in zipfile

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

[issue16630] IDLE: Calltip fails if __getattr__ raises exception

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

[issue16624] subprocess.check_output should allow specifying stdin as a string

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

[issue16638] support multi-line docstring signatures in IDLE calltips

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

[issue11159] Sax parser crashes if given unicode file name

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

[issue16674] Faster getrandbits() for small integers

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

[issue16659] Pure Python implementation of random

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

[issue16601] Restarting iteration over tarfile continues from where it left off.

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

[issue16550] pickletools.py treats 32bit lengths as signed, but pickle.py as unsigned

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

[issue16686] audioop overflow issues

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

[issue15861] ttk.Treeview "unmatched open brace in list"

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

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed. Thank you for a patch, Matthew. I hope to see more your patches. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 44a4f9289faa by Serhiy Storchaka in branch '3.3': Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. http://hg.python.org/cpython/rev/44a4f9289faa New changeset c59ee1ff6f27 by Serhiy Storchaka in branch 'de

[issue16816] Bug in hash randomization

2012-12-29 Thread Domen Kožar
New submission from Domen Kožar: Script to reproduce the issue https://gist.github.com/4409304 -- components: Interpreter Core messages: 178539 nosy: iElectric priority: normal severity: normal status: open title: Bug in hash randomization type: behavior versions: Python 3.3 ___

[issue16782] No curses.initwin: Incorrect package docstring for curses

2012-12-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2, Python 3.4 ___ Python tracker ___ ___

[issue16782] No curses.initwin: Incorrect package docstring for curses

2012-12-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in active development branches. Thanks. -- nosy: +asvetlov ___ Python tracker ___ ___ Python-

[issue16688] Backreferences make case-insensitive regex fail on non-ASCII strings.

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

[issue16782] No curses.initwin: Incorrect package docstring for curses

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset cbee422ca727 by Andrew Svetlov in branch '3.2': Fix docstring in curses (#16782) http://hg.python.org/cpython/rev/cbee422ca727 New changeset e9cbe583156f by Andrew Svetlov in branch '3.3': Fix docstring in curses (#16782) http://hg.python.org/cpytho

[issue12004] PyZipFile.writepy gives internal error on syntax errors

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

[issue16320] Establish order in bytes/string dependencies

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

[issue16694] Add pure Python operator module

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

[issue16485] FD leaks in aifc module

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: works for me -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue16486] Add context manager support to aifc module

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have added the test that the file was actually closed using external file (as in test_close()). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16485] FD leaks in aifc module

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> works for me stage: patch review -> committed/rejected status: open -> closed versions: +Python 2.7 ___ Python tracker ___ __

[issue16486] Add context manager support to aifc module

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9beb11071dd1 by Serhiy Storchaka in branch 'default': Issue #16486: Make aifc files work with 'with' as context managers. http://hg.python.org/cpython/rev/9beb11071dd1 -- nosy: +python-dev ___ Python trac

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: Nice. Didn't know about that one. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16485] FD leaks in aifc module

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset cf8d692cc847 by Serhiy Storchaka in branch '2.7': Issue #16485: Fix file descriptor not being closed if file header patching fails on closing of aifc file. http://hg.python.org/cpython/rev/cf8d692cc847 New changeset e3c4e9f4ea0f by Serhiy Storchaka

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Ezio Melotti
Ezio Melotti added the comment: FTR there's also "make htmlview" that already opens a browser to the index of the locally built docs. -- ___ Python tracker ___ _

[issue16778] Logger.findCaller needs to be smarter

2012-12-29 Thread Vinay Sajip
Changes by Vinay Sajip : Added file: http://bugs.python.org/file28486/aecafebb7880.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: The Linux (and Unix?) equivalent is xdg-open. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks. Btw, it works for me on Mac OS X I believe out of the box: Help: Open opens files from a shell. By default, opens each file using the default application for that file. If the file is in the form of a URL, the file will be opened as a URL.

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Sandro Tosi
Sandro Tosi added the comment: > Out of curiosity, does anyone know if the following works on all or most > systems? > > $ open _build/html/index.html it doesn't work on my Debian system: $ open _build/html/index.html Couldn't get a file descriptor referring to the console as open is a link t

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks for the patch. Out of curiosity, does anyone know if the following works on all or most systems? $ open _build/html/index.html That could also be added to save time for people that don't already know. -- nosy: +chris.jerdonek resolution: -> f

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20333d160f4e by Chris Jerdonek in branch 'default': Issue #16813: Use the full relative path in the documentation-building instructions. http://hg.python.org/devguide/rev/20333d160f4e -- nosy: +python-dev __

[issue16640] Less code under lock in sched.scheduler

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16641] sched.scheduler.enter arguments should not be modifiable

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16642] Mention new "kwargs" named tuple parameter in sched module

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16640] Less code under lock in sched.scheduler

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1bed43c0a5af by Serhiy Storchaka in branch 'default': Issue #16640: Run less code under a lock in sched module. http://hg.python.org/cpython/rev/1bed43c0a5af -- nosy: +python-dev ___ Python tracker

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 467c46e312eb by Serhiy Storchaka in branch '3.3': Issue #16165: Fix sched.scheduler.run() method was block a scheduler for http://hg.python.org/cpython/rev/467c46e312eb New changeset ac919a281643 by Serhiy Storchaka in branch 'default': Issue #16165

[issue16641] sched.scheduler.enter arguments should not be modifiable

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1c9c0f92df65 by Serhiy Storchaka in branch '3.3': Issue #16641: Fix default values of sched.scheduler.enter arguments were modifiable. http://hg.python.org/cpython/rev/1c9c0f92df65 New changeset e22ebc34a8eb by Serhiy Storchaka in branch 'default':

[issue16642] Mention new "kwargs" named tuple parameter in sched module

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5db0833f135b by Serhiy Storchaka in branch '3.3': Issue #16642: Document kwargs field in sched.Event named tuple. http://hg.python.org/cpython/rev/5db0833f135b New changeset cf6425df1cb8 by Serhiy Storchaka in branch 'default': Issue #16642: Documen

[issue16810] inconsistency in weekday

2012-12-29 Thread Glenn Linderman
Changes by Glenn Linderman : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue16810] inconsistency in weekday

2012-12-29 Thread Glenn Linderman
Glenn Linderman added the comment: Thanks for the response, Serhiy. I misreported, but there is still a bug in this area, it seems. Attached is some code. I was printing out (too) many values from datetime to learn how it worked. I got confused on which ones were printed in which order. The

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

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > pydoc could recognize this (if docstring.startswith(func.__name__ + '(') or > something like that), and display the given signature instead of the > introspected one. Looks good for me. -- ___ Python tracker <

[issue16810] inconsistency in weekday

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I don't see a difference. $ ./python -c 'import time; print(time.localtime())' time.struct_time(tm_year=2012, tm_mon=12, tm_mday=29, tm_hour=19, tm_min=36, tm_sec=35, tm_wday=5, tm_yday=364, tm_isdst=0) $ ./python -c 'import datetime; print(datetime.date.toda

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

2012-12-29 Thread Georg Brandl
Georg Brandl added the comment: A simple, minimal-invasive solution would be to allow a signature for documentation purposes as the first line of the docstrings. pydoc could recognize this (if docstring.startswith(func.__name__ + '(') or something like that), and display the given signature in

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-29 Thread Georg Brandl
Georg Brandl added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

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

2012-12-29 Thread Georg Brandl
Georg Brandl added the comment: Agree with David. -- nosy: +georg.brandl status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Georg Brandl
Georg Brandl added the comment: Fine with me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue16815] Is all OK!!

2012-12-29 Thread Hynek Schlawack
New submission from Hynek Schlawack: Glad to hear. -- nosy: +hynek resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16815] Is all OK!!

2012-12-29 Thread Bernie Keimel
Changes by Bernie Keimel : -- nosy: Bernie.Keimel priority: normal severity: normal status: open title: Is all OK!! ___ Python tracker ___ ___

[issue16074] bad error message in os.rename

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As I see, now 3.4 behavior differs from 3.3 behavior. >>> os.link('non-existent-name', 'new-name') Traceback (most recent call last): File "", line 1, in FileNotFoundError: [Errno 2] No such file or directory: 'non-existent-name' >>> os.symlink('long-name'*

[issue13775] Access Denied message on symlink creation misleading for an existing file/directory target.

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue16074. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailin

[issue13810] refer people to Doc/Makefile when not using 'make' to build main documentation

2012-12-29 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: > Additionally, the whole way we're fetching those tools will be revisited soon. What are/were your plans ? -- ___ Python tracker ___ ___

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

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue16074. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailin

[issue16809] Tk 8.6.0 introduces TypeError. (Tk 8.5.13 works)

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

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

2012-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > And if os.open were supplied in os.py: > > @inspect.override_string_representation('mode', > 'os.O_CREAT | os.O_RDWR') > def open(file, flags, mode=0o777, *, dir_fd=None): Other use case is a sentinel default. "foo(arg={})" looks better than

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

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

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

2012-12-29 Thread Daniel Shahaf
Daniel Shahaf added the comment: Any attempt to pickle an Element object in test_xml_etree.py causes that test to fail if test___all__ had been run before it; see attached transcript. It's against 3.4, with no changes other than the testsuite changes shown within. I don't know what the root c

[issue16778] Logger.findCaller needs to be smarter

2012-12-29 Thread Vinay Sajip
Vinay Sajip added the comment: > Passing a globals() instance looks hackish. Agreed it's not ideal, but we're constrained by what's available to compare against via the frame. Apart from globals() there's only really the filename, which isn't ideal either. --

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-29 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: And this one patch applies to 2.7. -- versions: +Python 2.7, Python 3.2 Added file: http://bugs.python.org/file28483/remove-directives-warnings-2.7.diff ___ Python tracker __

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-29 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: The previous patch applies cleanly to 3.3 and 3.4. I am now attaching one that applies cleanly to 3.2. -- versions: +Python 3.3 Added file: http://bugs.python.org/file28482/remove-directives-warnings-3.2.diff _

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

2012-12-29 Thread R. David Murray
Changes by R. David Murray : -- title: use --directory option of make -> use --directory option of make in describing how to build the docs ___ Python tracker ___ __

[issue16814] use --directory option of make

2012-12-29 Thread R. David Murray
R. David Murray added the comment: I think the fact that the cd paradigm is more commonly encountered is a fairly strong argument in favor of keeping it, but I'm only -0 on this change. -- nosy: +r.david.murray ___ Python tracker

  1   2   >