[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Vinay Sajip
Vinay Sajip [EMAIL PROTECTED] added the comment: Without the patch, but simply moving the fileConfig() call to above where the loggers are initialised, the output is the same as your patched sample, viz. logger:DEBUG: log debug logger:INFO: log info logger:WARNING: log warning logger:ERROR: log

[issue3137] Python doesn't handle SIGINT well if it arrives during interpreter startup

2008-06-19 Thread Geoffrey Bache
New submission from Geoffrey Bache [EMAIL PROTECTED]: If a python script receives SIGINT while the interpreter is starting up, it's possible to get the message import site failed; use -v for traceback printed on standard error and for execution to proceed. It also seems to be possible to get

[issue3138] Hang when calling get() on an empty queue in the queue module

2008-06-19 Thread Dex
New submission from Dex [EMAIL PROTECTED]: This behavior appears in Python 3.0b1. If you use queue.Queue and call the get method on the empty queue, it appears to hang. The same behavior seems to be evident in the PriorityQueue too. -- messages: 68393 nosy: slash2314 severity: normal

[issue2517] Error when printing an exception containing a Unicode string

2008-06-19 Thread Simon Cross
Simon Cross [EMAIL PROTECTED] added the comment: Justing prodding the issue again now that the betas are out. What's the next step? ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2517 ___

[issue3121] test_urllibnet fails

2008-06-19 Thread Ismail Donmez
Ismail Donmez [EMAIL PROTECTED] added the comment: Works fine in trunk now, can someone please close this bug? Thanks. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3121 ___

[issue3138] Hang when calling get() on an empty queue in the queue module

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: 2.5 has the same behavior: Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. import Queue q = Queue.Queue() q.get() block forever

[issue3121] test_urllibnet fails

2008-06-19 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc [EMAIL PROTECTED]: -- resolution: - out of date status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3121 ___

[issue3139] print is not thread safe

2008-06-19 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc [EMAIL PROTECTED]: I found this problem when adding print statements to multi-threaded code. When applying the attached diff to a py3k installation, the output on screen always contains some garbage. The following code is an extract of fileio_write (in

[issue3139] print is not thread safe

2008-06-19 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Wasn't that always known ? Maybe I'm missing something here. -- nosy: +gpolo ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3139 ___

[issue2636] Regexp 2.6 (modifications to current re 2.2.2)

2008-06-19 Thread Jeffrey C. Jacobs
Jeffrey C. Jacobs [EMAIL PROTECTED] added the comment: Thanks for weighing in Mark! Actually, your point is valid and quite fair, though I would not assume that Item 3 would be included just because Item 2 isn't. I will do my best to develop both, but I do not make the final decision as to

[issue3139] print is not thread safe

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: The problem is not only about concurrent prints. It is about invalid pointer passed to a C function. Here is an example that reliably crashes the interpreter on my windows machine: import bz2, threading bz2c = bz2.BZ2Compressor() b =

[issue3138] Hang when calling get() on an empty queue in the queue module

2008-06-19 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: It's intended that Queue.get blocks until something is put on the Queue. If you don't want it to block use Queue.get(False). -- nosy: +benjamin.peterson resolution: - invalid status: open - closed

[issue3139] print is not thread safe

2008-06-19 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' [EMAIL PROTECTED]: -- nosy: +giampaolo.rodola ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3139 ___ ___ Python-bugs-list

[issue3137] Python doesn't handle SIGINT well if it arrives during interpreter startup

2008-06-19 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Yes, the C startup code in pythonrun.c has a lot of bare-except statements. -- nosy: +benjamin.peterson type: - behavior ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3137

[issue3140] str.format({0:n}) poss. bug with setlocale()

2008-06-19 Thread Mark Summerfield
New submission from Mark Summerfield [EMAIL PROTECTED]: Python 30b1 import locale locale.setlocale(locale.LC_ALL, en_US.UTF-8) 'en_US.UTF-8' for x in (1234,12345,123456,1234567,12345678,123456789,1234567890,12345678900): print([{0:20n}].format(x)) [1,234] [

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella [EMAIL PROTECTED] added the comment: The problem is you can't always do that call before using the loggers. In my case, I get the logging config file via command-line arguments (using optparse), but before I can't even know what logging config file to load, I have log calls.

[issue3140] str.format({0:n}) poss. bug with setlocale()

2008-06-19 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- assignee: - eric.smith nosy: +eric.smith ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3140 ___ ___

[issue3141] Linux build requires Mac module _gestalt

2008-06-19 Thread Mark Summerfield
New submission from Mark Summerfield [EMAIL PROTECTED]: When you build 30b1 on Linux (I tried Fedora 8 and Xubuntu 8) you get a message that make failed to find the bits to build _gestalt, which I think is a Mac-thing not a Linux thing. Anyway, Barry asked me to add this as a bug. --

[issue3142] urllib docs don't match the new modules

2008-06-19 Thread Mark Summerfield
New submission from Mark Summerfield [EMAIL PROTECTED]: Py30b1 The module renaming of urllib's modules (and the getting rid of urllib2) has been done---but this isn't reflected in the docs. -- assignee: georg.brandl components: Documentation messages: 68406 nosy: georg.brandl, mark

[issue3141] Linux build requires Mac module _gestalt

2008-06-19 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Done in r64405. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3141

[issue3125] test_multiprocessing causes test_ctypes to fail

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: - jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3125 ___ ___ Python-bugs-list mailing

[issue3088] test_multiprocessing hangs on OS X 10.5.3

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: - jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3088 ___ ___ Python-bugs-list mailing

[issue3110] Multiprocessing package build problem on Solaris 10

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: - jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3110 ___ ___ Python-bugs-list mailing

[issue3140] str.format({0:n}) poss. bug with setlocale()

2008-06-19 Thread Eric Smith
Eric Smith [EMAIL PROTECTED] added the comment: I'd say that's a bug. I'll look at it. -- components: +Interpreter Core nosy: +talin ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3140 ___

[issue2636] Regexp 2.6 (modifications to current re 2.2.2)

2008-06-19 Thread Mark Summerfield
Mark Summerfield [EMAIL PROTECTED] added the comment: [snip] It seems to me that both using a special prefix or adding an option are adding a lot of baggage and will increase the learning curve. The nice thing about (3) (even without slicing) is that it seems a v. natural extension. But (2)

[issue2571] cmd.py always uses raw_input, even when another stdin is specified

2008-06-19 Thread Raghuram Devarakonda
Raghuram Devarakonda [EMAIL PROTECTED] added the comment: On Wed, Jun 18, 2008 at 9:28 PM, Richard King [EMAIL PROTECTED] wrote: Richard King [EMAIL PROTECTED] added the comment: There were some other things I wanted too so I just made my own cmd.py. Yes. Lot of people seem to use their own

[issue3142] urllib docs don't match the new modules

2008-06-19 Thread Senthil
Senthil [EMAIL PROTECTED] added the comment: I saw this coming. I am working on this Mark, Georg. Will be done with this by Saturday (21st-Jun). issue2885 is not closed yet and mentions about docs and other things pending. -- nosy: +orsenthil ___

[issue3140] str.format({0:n}) poss. bug with setlocale()

2008-06-19 Thread Eric Smith
Changes by Eric Smith [EMAIL PROTECTED]: -- versions: +Python 2.6 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3140 ___ ___ Python-bugs-list mailing

[issue3143] development docs waste a lot of horizontal space on left nav bar

2008-06-19 Thread Forest Wilkinson
New submission from Forest Wilkinson [EMAIL PROTECTED]: I was just browsing the development docs, and noticed that the new left-side navigation bar wastes a lot of horizontal space on the web page. It fills nearly a third of my browser window (at its usual size) with useless blank space, at the

[issue3143] development docs waste a lot of horizontal space on left nav bar

2008-06-19 Thread Antoine Pitrou
Antoine Pitrou [EMAIL PROTECTED] added the comment: I agree with this bug entry. Also, since pages are usually long, if the left nav bar is really to be useful it should use some fixed positioning in the CSS (that is, doesn't move when the rest of the page is scrolled). (of course this could

[issue1528620] Python 2.5b2 fails to build on Solaris 10 (Sun Compiler)

2008-06-19 Thread A.M. Kuchling
A.M. Kuchling [EMAIL PROTECTED] added the comment: Closing, per the last comment. -- resolution: - fixed status: pending - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue1528620 ___

[issue839496] SimpleHTTPServer reports wrong content-length for text files

2008-06-19 Thread A.M. Kuchling
Changes by A.M. Kuchling [EMAIL PROTECTED]: -- keywords: +easy ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue839496 ___ ___ Python-bugs-list mailing

[issue3125] test_multiprocessing causes test_ctypes to fail

2008-06-19 Thread roudkerk
roudkerk [EMAIL PROTECTED] added the comment: I am not sure to understand. Can you elaborate? How is memory management different between windows and unix? Removing the if win32 bits will not make shared ctypes objects picklable on unix. Even on windows there are only picklable in the context

[issue3144] popen / popen[234] inconsistent fd behavior

2008-06-19 Thread Justin Cappos
New submission from Justin Cappos [EMAIL PROTECTED]: The behavior of popen vs popen[2-4] differs with respect to open file descriptors (at least on the Linux implementation of popen). popen does not close file descriptors, thus processes retain open file descriptors from their parent. This

[issue3125] test_multiprocessing causes test_ctypes to fail

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: Why not use a custom Pickler in this case? It would to be enough to copy the self.dispatch dictionary, and add the special types there. ___ Python tracker [EMAIL PROTECTED]

[issue3144] popen / popen[234] inconsistent fd behavior

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: This is so true that these functions are now documented as deprecated: http://docs.python.org/dev/library/os.html#os.popen2 Please use the subprocess.Popen class instead, which gives a much better interface to processes. --

[issue3145] help modules os raises UnicodeDecodeError

2008-06-19 Thread Michael Yang
New submission from Michael Yang [EMAIL PROTECTED]: help() help modules os Here is a list of matching modules. Enter any module name to get more help. posix - This module provides access to operating system ... stringprep - Library that exposes various tables found in the StringPrep RFC 3454.

[issue3134] shutil references undefined WindowsError symbol

2008-06-19 Thread Raghuram Devarakonda
Raghuram Devarakonda [EMAIL PROTECTED] added the comment: I submitted a patch at http://codereview.appspot.com/2384. Please take a look. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3134 ___

[issue3145] help modules os raises UnicodeDecodeError

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: I added some print statements, and it appears that the function is trying to read get the source of test.badsyntax_pep3120 ! -- nosy: +amaury.forgeotdarc ___ Python tracker [EMAIL PROTECTED]

[issue2885] Create the urllib package

2008-06-19 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Just remember to close #3142 when you're done. -- dependencies: +urllib docs don't match the new modules ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2885

[issue3054] test_disutils fails

2008-06-19 Thread Neil Schemenauer
Neil Schemenauer [EMAIL PROTECTED] added the comment: Looks like this has exposed some ugly code. From setup.py: # Figure out the location of the source code for extension modules # (This logic is copied in distutils.test.test_sysconfig, # so building in a separate directory does not

[issue3142] urllib docs don't match the new modules

2008-06-19 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Great! When finished with the docs, just check them in, I'll look over it then. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3142 ___

[issue3145] help modules os raises UnicodeDecodeError

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: Corrected with r64411. Thanks for the report! -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3145

[issue3146] Sphinx/LaTeX fails on Python 3.0b1 documentation

2008-06-19 Thread Vincent Manis
New submission from Vincent Manis [EMAIL PROTECTED]: When attempting to build the LaTeX for the documentation provided with Python 3.0b1, the following error is produced while writing the Library documentation (full backtrace provided). I am running Sphinx on Python 2.5. Traceback (most

[issue3112] implement PEP 3134 exception reporting

2008-06-19 Thread Antoine Pitrou
Antoine Pitrou [EMAIL PROTECTED] added the comment: Yet another question. There is a slight discrepancy between tracebacks generated by the builtin-reporting and tracebacks generated by traceback.py. With built-in reporting: Traceback (most recent call last): File stdin, line 1, in module

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Vinay Sajip
Vinay Sajip [EMAIL PROTECTED] added the comment: Fixed checked into trunk. -- resolution: invalid - fixed status: pending - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3136 ___

[issue3147] tests for sys.getsizeof fail on win64

2008-06-19 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc [EMAIL PROTECTED]: the buildbot AMD64 W2k8 trunk systematically fails with the messages: == FAIL: test_specialtypes (test.test_sys.SizeofTest)

[issue3054] test_disutils fails

2008-06-19 Thread Neil Schemenauer
Neil Schemenauer [EMAIL PROTECTED] added the comment: I think my previous patch combined with sysconfig_builddir.patch fixes this issue. Someone will need to test on other platforms. Note that the messy code in setup.py and in the tests should still be cleaned up. BTW, distutils is a den of

[issue3125] test_multiprocessing causes test_ctypes to fail

2008-06-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: Here is a patch that implements a custom pickler for multiprocessing.forking. copy_reg has been completely replaced by calls to ForkingPickler.register(): the global registry is not modified. Added file:

[issue3148] multiprocessing test hangs

2008-06-19 Thread Jean Brouwers
New submission from Jean Brouwers [EMAIL PROTECTED]: The test_multiprocessing hangs with both Python 2.6b1 and 3.0b1 on MacOS X 10.4.11 (Intel) but only when using make test. However, the test runs and passes in both builds if run separately, e.g. with ./python

[issue3148] multiprocessing test hangs

2008-06-19 Thread Jean Brouwers
Jean Brouwers [EMAIL PROTECTED] added the comment: Sorry, this issue has already been raised in #3088. Please ignore. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3148 ___

[issue3148] multiprocessing test hangs

2008-06-19 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- resolution: - duplicate status: open - closed superseder: - test_multiprocessing hangs on OS X 10.5.3 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3148

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella [EMAIL PROTECTED] added the comment: Thank you very much ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3136 ___ ___ Python-bugs-list mailing

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella [EMAIL PROTECTED] added the comment: Here is a patch to add some documentation on the new fileConfig() argument. Is not much, but it's better than nothing =) Added file: http://bugs.python.org/file10662/logging.config.disable_existing_loggers.doc.patch

[issue3054] test_disutils fails

2008-06-19 Thread Neil Schemenauer
Neil Schemenauer [EMAIL PROTECTED] added the comment: One final patch for today (get_python_inc.patch). The patch combines my previous two patches and also cleans up some ugly code in setup.py and test_sysconfig.py. The source of the ugliness was that get_python_inc() did not work when running

[issue3054] test_disutils fails

2008-06-19 Thread Neil Schemenauer
Changes by Neil Schemenauer [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file10659/test_ext_src.patch ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3054 ___

[issue754016] urlparse goes wrong with IP:port without scheme

2008-06-19 Thread Facundo Batista
Changes by Facundo Batista [EMAIL PROTECTED]: -- assignee: georg.brandl - facundobatista ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue754016 ___ ___

[issue3008] Let bin() show floats

2008-06-19 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: To address the ideas brought-up so far, here's a new version that can work with eval. The same appoach extends to oct and hex as well: def newbin(f): newbin(3.125) '0b11001 * 2.0 ** -3' n, d =

[issue3149] multiprocessing build fails on Solaris 10

2008-06-19 Thread Jean Brouwers
New submission from Jean Brouwers [EMAIL PROTECTED]: The multiprocessing module fails to build on Solaris 10 when using the Sun C compiler. The failure is due to one missing symbol SEM_VALUE_MAX. Defining that symbol (e.g. as _POSIX_SEM_VALUE_MAX) builds the _multiprocessing module for

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Humberto Diogenes
New submission from Humberto Diogenes [EMAIL PROTECTED]: The new multiprocessing module is not being installed: $ python3.0 Python 3.0b1+ (py3k:64417, Jun 19 2008, 21:25:46) [GCC 4.0.1 (Apple Inc. build 5483)] on darwin Type help, copyright, credits or license for more information. import

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Is this a make make install? -- nosy: +jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3150 ___

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: - jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3150 ___ ___ Python-bugs-list mailing

[issue3149] multiprocessing build fails on Solaris 10

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: - jnoller nosy: +jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3149 ___ ___

[issue3143] development docs waste a lot of horizontal space on left nav bar

2008-06-19 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: +1 coat to the bikeshed, the new layout is painful unless you're at a higher resolution/bigger window -- nosy: +jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3143

[issue3149] multiprocessing build fails on Solaris 10

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- nosy: +roudkerk ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3149 ___ ___ Python-bugs-list mailing list

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- keywords: +easy ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3150 ___ ___ Python-bugs-list mailing list

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Humberto Diogenes
Humberto Diogenes [EMAIL PROTECTED] added the comment: Jesse, not install, but altinstall: sudo rm -fr /usr/local/lib/python3.0 make clean make sudo make altinstall Forgot to mention that it was originally reported by Rodrigo Fenrrir. ___ Python tracker

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Thanks. This is what I get from running out of subversion all the time. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3150 ___

[issue3008] Let bin() show floats

2008-06-19 Thread Raymond Hettinger
Changes by Raymond Hettinger [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file10664/floatdisp.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3008 ___

[issue3008] Let bin() show floats

2008-06-19 Thread Raymond Hettinger
Changes by Raymond Hettinger [EMAIL PROTECTED]: Added file: http://bugs.python.org/file10666/float.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3008 ___

[issue3150] multiprocessing module not being installed

2008-06-19 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: I think r64422 should do the trick. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3150

[issue3008] Let bin() show floats

2008-06-19 Thread Raymond Hettinger
Changes by Raymond Hettinger [EMAIL PROTECTED]: Added file: http://bugs.python.org/file10667/float2.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3008 ___

[issue3143] development docs waste a lot of horizontal space on left nav bar

2008-06-19 Thread Senthil
Senthil [EMAIL PROTECTED] added the comment: +1 to support this bug entry. Even though I have wide-monitor (1680x1050), keeping such a wide left side margin is a pain when reading the new docs. I was looking for the settings if there is any way to turn off the left navigation or change the