[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: docs@python -> mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed. Thanks for the report! -- nosy: +mark.dickinson resolution: -> fixed status: open -> closed versions: +Python 3.2, Python 3.3 ___ Python tracker _

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset a644e2c43c4b by Mark Dickinson in branch 'default': Merge issue #13145 fix. http://hg.python.org/cpython/rev/a644e2c43c4b -- ___ Python tracker __

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 61eb59516b55 by Mark Dickinson in branch '3.2': Issue #13145. Fix incorrect documentation for PyNumber_ToBase. Thanks Sven Marnach. http://hg.python.org/cpython/rev/61eb59516b55 -- nosy: +python-dev __

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-10 Thread Sven Marnach
New submission from Sven Marnach : The documentation of PyNumber_ToBase() [1] states When base is not 2, 8, 10, or 16, the format is 'x#num' where x is the base. In reality, the function does not accept any bases different from 2, 8, 10, or 16, as can be seen in the source code of _PyL