[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 5ec7ecf62c1d by Victor Stinner in branch '3.2': Issue #13545: Fix platform.libc_version() is the SO version is missing http://hg.python.org/cpython/rev/5ec7ecf62c1d New changeset a9ee21ac0879 by Victor Stinner in

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-15 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: The patch in msg148968 solves the issue for me. Cool, I applied the patch to Python 3.2 and 3.3. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset f2a5dcced66d by Victor Stinner in branch '2.7': Issue #13545: Fix platform.libc_version() is the SO version is missing http://hg.python.org/cpython/rev/f2a5dcced66d --

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-07 Thread Peter Frauenglass
Peter Frauenglass python@everblue.info added the comment: I should also mention that pydoc2.7 -p 1234 works without issue. It seems to be a regression. Also adding lemburg to the Nosy list as the comments on platform.py suggest. -- nosy: +lemburg

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-07 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This seems to be an issue with the platform module's detection of the glibc. Can you tell us more about your system? (OS, distribution...) -- nosy: +pitrou, r.david.murray versions: +Python 3.3 ___

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-07 Thread maniram maniram
maniram maniram maniandra...@gmail.com added the comment: On my system it works. :-) -- nosy: +maniram.maniram ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13545 ___

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-07 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Can you try to patch platform.py with the following patch? diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -186,7 +186,7 @@ def libc_ver(executable=sys.executable,l elif so:

[issue13545] Pydoc3.2: TypeError: unorderable types

2011-12-07 Thread Peter Frauenglass
Peter Frauenglass python@everblue.info added the comment: The patch in msg148968 solves the issue for me. I'm running Linux, originally installed as Mint 9, though upgraded and modified incrementally until it's now kubuntu 11.10. I have the libc6 package version 2.13-20ubuntu5 installed.