[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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-11 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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 rep...@bugs.python.org

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com 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 rep...@bugs.python.org

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-11 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- assignee: docs@python - mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13145 ___

[issue13145] Documentation of PyNumber_ToBase() wrong

2011-10-10 Thread Sven Marnach
New submission from Sven Marnach s...@marnach.net: 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