[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Brett Cannon
Brett Cannon added the comment: changelist d56b647f325a -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: You should probably use *level* instead of 'level'. -- ___ Python tracker ___ _

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Brett Cannon
Brett Cannon added the comment: changest 231d98a38eec has the versionchanged notice. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: What about the suggested change in Doc/library/functions.rst? -- ___ Python tracker ___ ___

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2a4ca86cc2b7 by Brett Cannon in branch 'default': Issue #15508: Fix the docstring for __import__ to not mention negative http://hg.python.org/cpython/rev/2a4ca86cc2b7 -- nosy: +python-dev ___ Python track

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue15508] __import__.__doc__ has outdated information about level

2012-07-30 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: $ python3.2 -c '__import__("os", level=-1)' $ python3.3 -c '__import__("os", level=-1)' Traceback (most recent call last): File "", line 1, in ValueError: level must be >= 0 $ python3.3 -c 'print(__import__.__doc__)' __import__(name, glo