[issue5476] datetime: timedelta(minutes = i) silently fails with numpy.int32 input

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: multiple inheritance should not be a problem: there can be only one dominant base, which is 'int' in this case. someone with a debugger should step into this call to PyType_Ready() and see why it does not set the flag correctly (at the

[issue6686] xml.sax.xmlreader.XMLReader.getProperty (xml.sax.handler.property_xml_string) returns bytes

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: A unit test (or even a sample script) showing the desired feature is needed. -- nosy: +amaury.forgeotdarc stage: - unit test needed ___ Python tracker rep...@bugs.python.org

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-07-20 Thread Greg Hazel
Changes by Greg Hazel gha...@users.sourceforge.net: -- nosy: +ghazel ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7171 ___ ___ Python-bugs-list

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: By confirming the %2525 case, I guess this is really a bug. But the patch cause test_urllib2.py failed. I modified the patch to fix it. -- nosy: +ysj.ray Added file: http://bugs.python.org/file18082/urllib_issue_updated.patch

[issue8192] SQLite3 PRAGMA table_info doesn't respect database on Win32

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: python2.7 includes a newer version of sqlite. Does the problem still reproduces there? -- nosy: +amaury.forgeotdarc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8192

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Changes by Ray.Allen ysj@gmail.com: Added file: http://bugs.python.org/file18083/urllib_issue_updated.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2244 ___

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Changes by Ray.Allen ysj@gmail.com: Removed file: http://bugs.python.org/file18082/urllib_issue_updated.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2244 ___

[issue9310] Intermittent failures in test_logging

2010-07-20 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: I'm not convinced that this is an error in logging or test_logging. There are no special Unicode keys in the list being sorted AFAIK, and no reason why the sort() should fail. It's more likely to be some problem in the collation code

[issue9310] Intermittent failures in test_logging

2010-07-20 Thread Vinay Sajip
Changes by Vinay Sajip vinay_sa...@yahoo.co.uk: -- assignee: vinay.sajip - status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9310 ___

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: This bug exists on py3k also, so I worked out a patch for py3k, too. -- Added file: http://bugs.python.org/file18084/urllib_issue_updated.diff ___ Python tracker rep...@bugs.python.org

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Thanks Ray Allen. Usually the patch against the py3k branch is enough, it will be ported to other branches. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2244

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Alexander Dreyer
Changes by Alexander Dreyer adre...@gmx.de: Added file: http://bugs.python.org/file18085/dist.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9309 ___

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Alexander Dreyer
Alexander Dreyer adre...@gmx.de added the comment: Added better patch (checks environment first). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9309 ___

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Alexander Dreyer
Changes by Alexander Dreyer adre...@gmx.de: Removed file: http://bugs.python.org/file18069/dist.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9309 ___

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: I don't think this can go into python2.x. Besides, is it really worthy to add such a new environment variable? -- nosy: +ysj.ray ___ Python tracker rep...@bugs.python.org

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Alexander Dreyer
Alexander Dreyer adre...@gmx.de added the comment: The patch is originating from Sage Days 24. Sage (http://www.sagemath.org) distributes a bunch of mathematical python-based software. The integration of the individual packages is done by individual people which might not use --no-user-cfg in

[issue9310] Intermittent failures in test_logging

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Actually it looks the same as issue 8201. If test_lib2to3 is run before test_logging, test_logging fails. Perhaps backporting the patch will help. -- keywords: +patch Added file:

[issue9310] Intermittent failures in test_logging

2010-07-20 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- resolution: invalid - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9310 ___ ___

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2010-07-20 Thread Dmitry Jemerov
Dmitry Jemerov intelliy...@gmail.com added the comment: The problem doesn't happen on Python 3.1.2 because it doesn't have the code in mimetypes that accesses the Windows registry. Haven't tried the 3.2 alphas yet. -- ___ Python tracker

[issue3615] Expect methods for testing.

2010-07-20 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: The API on TestCase is already too wide without adding more methods. This is easy enough to do in a TestCase subclass for those who want it. -- resolution: - wont fix status: pending - closed

[issue4080] pyunit - display time of each test case - patch

2010-07-20 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: I am in the process of creating an extension mechanism for unittest which will make adding this sort of use case to unittest much easier. *Even* if it is added to the core it should be in the form of an extension (plugin) so please

[issue9296] json module skipkeys handling changed exception types in 2.7

2010-07-20 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: A quick look suggests that the patches are ok, thank you. -- stage: needs patch - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9296

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: How about skipping the tests until someone can figure out what's going on? The patch is tested on: http://www.python.org/dev/buildbot/builders/i386 Ubuntu 3.x/builds/1643 -- keywords: +patch nosy: +skrah Added file:

[issue9313] distutils error on MSVC older than 8

2010-07-20 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: I got an error while testing py3k on VC6. Here is a patch. == ERROR: test_remove_visual_c_ref (distutils.tests.test_msvc9compiler.msvc9compile rTestCase)

[issue2690] Precompute range length

2010-07-20 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- assignee: - ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2690 ___ ___ Python-bugs-list

[issue9314] inconsistent result when concatenating list with iterators

2010-07-20 Thread Dirkjan Ochtman
New submission from Dirkjan Ochtman dirk...@ochtman.nl: This seems wrong: a = [] b = iter(['c', 'd']) a += b c = [] c + iter(['d', 'e']) Traceback (most recent call last): File stdin, line 1, in module TypeError: can only concatenate list (not listiterator) to list In other words, if

[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: IDLE should be accessible and easy to use for beginners who have never used a command line. Therefore I don't think up/down should scroll through the history by default. Since IDLE looks like a text editor (even the shell window) it is more

[issue2704] IDLE: Patch to make PyShell behave more like a Terminal interface

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: Regarding passing on letter/number key-presses to the command line, I'm -0 on this. Note that not only letter/number keys should be passed on. I've often found myself wanting to type in the command line after looking at previous code, to see

[issue9265] Incorrect name passed as arg[0] when shell=True and executable specified

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: The trustworthy buildbots look good, so I'm closing this. -- keywords: -needs review, patch resolution: accepted - fixed stage: patch review - committed/rejected status: open - closed ___

[issue9036] Simplify Py_CHARMASK

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Antoine, Eric, thanks for looking at the patch. unicodeobject.c patch committed in r82978, r82979, r82980 and r82984. As Antoine pointed out, the _json.c issue is not a problem. Also, it is not present in py3k. The reliable buildbots

[issue1524639] Fix Tkinter Tcl-commands memory-leaks

2010-07-20 Thread Tal Einat
Changes by Tal Einat talei...@gmail.com: -- nosy: +taleinat ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1524639 ___ ___ Python-bugs-list mailing

[issue9309] Add environment variable complementing command line option -no-user-cfg

2010-07-20 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9309 ___ ___

[issue9232] Allow trailing comma in any function argument list.

2010-07-20 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- assignee: - mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9232 ___ ___

[issue1747670] Limiting data copy in xmlrpclib

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The code in the patch has been removed from py3k. This can only go forward if a unit test is provided. Change assigned to as per maintainers list. -- assignee: - loewis nosy: +BreamoreBoy, loewis versions: -Python 3.1

[issue3526] Customized malloc implementation on SunOS and AIX

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Any SunOS/AIX people interested in keeping this open? -- nosy: +BreamoreBoy versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3526

[issue2124] xml.sax and xml.dom fetch DTDs by default

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Does anybody know if users are still experiencing problems with this issue? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue1635741] Interpreter seems to leak references after finalization

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Does the title of this issue accurately reflect the current status of the Python interpreter? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___

[issue2181] optimize out local variables at end of function

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closing as nobody has commented. -- nosy: +BreamoreBoy resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2181

[issue5901] missing meta-info in documentation pdf

2010-07-20 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: georg.brandl - d...@python nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5901 ___

[issue6216] Raise Unicode KEEPALIVE_SIZE_LIMIT from 9 to 32?

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Terry, are you still interested in this? -- nosy: +BreamoreBoy versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6216

[issue1712522] urllib.quote throws exception on Unicode URL

2010-07-20 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: I agree to the points raised by Antoine. Also yesterday in IRC, Eric Smith mentioned that If someone uses these new parameters in 2.7.1 his code may not work with 2.7 (That would obviously be an undesirable behavior). So, it is better to

[issue2124] xml.sax and xml.dom fetch DTDs by default

2010-07-20 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: Yes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2124 ___ ___

[issue1747670] Limiting data copy in xmlrpclib

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Martin has recently removed his name from py3k/Misc/maintainers.rst. Also, he has stated that assigning bugs to him might mean that they get less attention (due to the large number of issues that he's involved in). -- nosy:

[issue1207589] Right Click Context Menu

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: I agree with Guilherme: shortcuts don't need to appear in the context menu. Guilherme's patch looks pretty good overall, but I have a few remarks: 1) Pasting should be disabled in the Shell window when the cursor is before the I/O mark. (the

[issue1207589] Right Click Context Menu

2010-07-20 Thread Tal Einat
Changes by Tal Einat talei...@gmail.com: Added file: http://bugs.python.org/file18090/IDLE_rmenu_py3k.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1207589 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-20 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: I experienced this crash on test_thread.py. I created a patch hopefully to fix this issue. My knowleage about threading is not so deep, so maybe this patch is not so good. ;-) # I'm worried about COND_RESET which is not used in my

[issue9311] os.access can return bogus values when run as superuser

2010-07-20 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I'm curious, are the perl and sh functions you say do the right thing wrappers around 'access', or are they some other sort of function? The Python code is just a thin wrapper around the system function, and as such will follow the

[issue9290] IDLE and Command line present different behavior for sys.stdin

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: I agree that the wrapping of these in IDLE should be as transparent as possible. It would be helpful if you could specify what other quirks you have found regarding sys.stdin, sys.stdout and sys.stderr, preferably describing use cases where

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: On Mon, Jul 19, 2010 at 7:21 PM, Alexander Belopolsky rep...@bugs.python.org wrote: I suggest the following wording for time.timezone description: time.timezone: The number of seconds one must add to the local time to arrive at UTC.

[issue9262] IDLE: Use tabbed shell and edit windows

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: (Note: there has recently been some discussion of this on idle-dev and python-dev.) This may be nice to have but has complications. I think there are currently more pressing issues regarding IDLE that require our attention. Also, just adding

[issue9308] Remove redundant coding cookies from 3.x stdlib

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Could you add comments in encoded_modules/__init__.py? I don’t understand it, so I can’t make a useful comment. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9308

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: In documenting/markup: program The name of an executable program. This may differ from the file name for the executable for some platforms. In particular, the .exe (or other) extension should be omitted for Windows programs. So I believe

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: On Windows, I can't think of any common reason to want to save a file edited in IDLE without the .py extension. On the other hand, accidentally forgetting the .py extension is annoying, and users have come to expect a default extension being

[issue9262] IDLE: Use tabbed shell and edit windows

2010-07-20 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9262 ___ ___ Python-bugs-list mailing

[issue9314] inconsistent result when concatenating list with iterators

2010-07-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9314 ___ ___ Python-bugs-list mailing

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Tue, Jul 20, 2010 at 10:46 AM, anatoly techtonik rep...@bugs.python.org wrote: .. Another concern - if UTC is 0 reference point then there is no reason to add something to it - you just can say - Return timedelta

[issue6378] Patch to make 'idle.bat' run idle.pyw using appropriate Python interpreter (so 3.1's idle.bat does not accidently use python26.exe)

2010-07-20 Thread Tal Einat
Changes by Tal Einat talei...@gmail.com: -- nosy: +taleinat ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6378 ___ ___ Python-bugs-list mailing

[issue7676] IDLE shell shouldn't use TABs

2010-07-20 Thread Tal Einat
Changes by Tal Einat talei...@gmail.com: -- nosy: +taleinat ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7676 ___ ___ Python-bugs-list mailing

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Tim Peters
Tim Peters tim.pet...@gmail.com added the comment: FYI, I like the change. As I recall it, the current wording was just to avoid saying ahead of UTC or behind UTC (which was the original wording). Technically pure or not, I never saw anyone get truly confused by East of UTC or West of UTC,

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. fdr...@acm.org added the comment: On Tue, Jul 20, 2010 at 10:46 AM, anatoly techtonik techto...@gmail.com wrote: I believe the correct convention is Return timedelta This is handled inconsistently in the documentation; I'm hoping the current maintainers reinforce the

[issue5817] Right-click behavior from Windows Explorer

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: Just to get this on the table: What is the benefit of having it opened in the same instance of IDLE rather than a new instance? -- nosy: +taleinat ___ Python tracker rep...@bugs.python.org

[issue7136] Idle File Menu Option Improvement

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: +1 on renaming it New File. Patch attached for py3k. -- keywords: +patch nosy: +taleinat Added file: http://bugs.python.org/file18092/IDLE_new_file_py3k.patch ___ Python tracker rep...@bugs.python.org

[issue6378] Patch to make 'idle.bat' run idle.pyw using appropriate Python interpreter (so 3.1's idle.bat does not accidently use python26.exe)

2010-07-20 Thread Sridhar Ratnakumar
Sridhar Ratnakumar sridh...@activestate.com added the comment: BTW, ActivePython (2.6 and 2.7 at the moment) includes this patched idle.bat. The start menu shortcut launches it. -- ___ Python tracker rep...@bugs.python.org

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: Documenting utcoffset() as Return timedelta equal to local UTC offset. is almost circular.  It does not explain whether it has to be added or subtracted from UTC to arrive at local time. Ok. Sold. I believe the correct convention is

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. fdr...@acm.org added the comment: On Tue, Jul 20, 2010 at 12:08 PM, anatoly techtonik rep...@bugs.python.org wrote: I've took the convention from here. I thought docs are generated from docstrings. They're not, but I don't think that really matters. Older documentation

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Tue, Jul 20, 2010 at 11:39 AM, Tim Peters rep...@bugs.python.org wrote: ..  As I recall it, the current wording was just to avoid saying ahead of UTC or behind UTC (which was the original wording). Interesting. I

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Tue, Jul 20, 2010 at 12:14 PM, Alexander Belopolsky rep...@bugs.python.org wrote: .. Interesting.  I actually like the original wording better.  For me, my watch is 6 hours behind UTC makes it clear that when the Big

[issue1747670] Limiting data copy in xmlrpclib

2010-07-20 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- assignee: loewis - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1747670 ___ ___

[issue1747670] Limiting data copy in xmlrpclib

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Could somebody update here please http://svn.python.org/view/*checkout*/python/branches/py3k/Misc/maintainers.rst -- ___ Python tracker rep...@bugs.python.org

[issue9308] Remove redundant coding cookies from 3.x stdlib

2010-07-20 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Could you add comments in encoded_modules/__init__.py? Please see updated issue9308a.diff. -- Added file: http://bugs.python.org/file18093/issue9308a.diff ___ Python tracker

[issue9308] Remove redundant coding cookies from 3.x stdlib

2010-07-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: Removed file: http://bugs.python.org/file18077/issue9308a.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9308 ___

[issue9308] Remove redundant coding cookies from 3.x stdlib

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I think this new test is a good idea. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9308 ___

[issue6791] httplib read status memory usage

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Sumar, to get this moved forward could you please provide a unit test. -- nosy: +BreamoreBoy stage: - unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.5, Python 2.6

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-07-20 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Terry, Re doctest.rst - appears to be a merging issue. I will see how to resolve it once we figure out what to do with :program: Éric, Good point - I'll ask pydev and will update the patch accordingly --

[issue6976] getcwd hangs and leaks mem on Solaris = 9 in very long file name case

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Are there any Solaris people who could look at this? The patch file contains a very small change to posixmodule.c. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org

[issue9305] Don't use east/west of UTC in date/time documentation

2010-07-20 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Tue, Jul 20, 2010 at 12:08 PM, anatoly techtonik rep...@bugs.python.org wrote: .. Ok. Sold. Good. All we need now is just a patch. :-) -- ___ Python tracker

[issue6216] Raise Unicode KEEPALIVE_SIZE_LIMIT from 9 to 32?

2010-07-20 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: That question should better be directed at Marc-Andre. I merely extracted this sub-issue from one of his posts in the very contentious discussion of #1943, lest it get lost. Antoine asked for a calculation. Marc-Andre gave one, but I do not

[issue6791] httplib read status memory usage

2010-07-20 Thread Senthil Kumaran
Changes by Senthil Kumaran orsent...@gmail.com: -- assignee: - orsenthil nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6791 ___

[issue8254] write a configure command

2010-07-20 Thread Jeremy Kloth
Jeremy Kloth jeremy.kl...@gmail.com added the comment: for #1 instead of importing `build`/`install` commands for their options, why not define the options only on the `configure` command? The B/I commands could just lookup their needed options from the configure command. On that note, how

[issue8254] write a configure command

2010-07-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8254 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8254] write a configure command

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Adding message from jkloth removed by error (remove/reply confusion): for #1 instead of importing `build`/`install` commands for their options, why not define the options only on the `configure` command? The B/I commands could just lookup

[issue7464] circular reference in HTTPResponse by urllib2

2010-07-20 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Lets just investigate the circular reference part here for this ticket. -- assignee: - orsenthil versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker

[issue8254] write a configure command

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: why not define the options only on the `configure` command? This is what Tarek told me and what I thought I said two messages earlier. On that note, how does the B/I commands get the options defined by `configure`? See

[issue9315] The trace module lacks unit tests

2010-07-20 Thread Eli Bendersky
New submission from Eli Bendersky eli...@gmail.com: Brought up in issue 9282: unit tests should be added for the trace module. Minor naming problem: Lib/test/test_trace.py is currently employed for testing the sys.settrace method. Suggestion: name the unit tests of the trace module

[issue9282] Bug in --listfuncs option of trace.py

2010-07-20 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: I've opened issue 9315 to address the lack of unit tests for trace.py I think that this should be committed regardless, since it fixes a serious bug in the module. Adding unit tests can take time, and is less critical. --

[issue4555] Smelly exports

2010-07-20 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: py3k is much cleaner than python 2, due to the change in the module API. Here's make smelly's output on a recent py3k checkout: nm -p libpython3.2.a | \ sed -n / [TDB] /s/.* //p | grep -v ^_*Py | sort -u; \ _add_one_to_index_C

[issue4555] Smelly exports (global symbols in python not prefixed with Py or _Py)

2010-07-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: -- title: Smelly exports - Smelly exports (global symbols in python not prefixed with Py or _Py) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4555

[issue8254] write a configure command

2010-07-20 Thread Jeremy Kloth
Jeremy Kloth jeremy.kl...@gmail.com added the comment: How would the build or install command get the options in this case: python setup.py configure --prefix=$HOME build install Remember that commands can be chained (and that commands can run other commands). I would like to be able to do

[issue7825] test_threadsignals leaks references

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Has the underlying code been fixed or could we still use the patch to test_threadsignals? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7825

[issue8258] Multiple Python Interpreter Memory Leak

2010-07-20 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: +brian.curtin, tim.golden stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8258 ___

[issue9314] inconsistent result when concatenating list with iterators

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: This actually works for any iterator: l = [] l += 'abc' l ['a', 'b', 'c'] -- nosy: +amaury.forgeotdarc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9314

[issue4555] Smelly exports (global symbols in python not prefixed with Py or _Py)

2010-07-20 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: Patch to py3k which adds the _Py prefix to the four listed symbols. With this, the output from make smelly is clean (odorless, perhaps?). However, adding _Py does seem to go against this comment in Include/asdl.h: /* It would be nice if the

[issue9314] inconsistent result when concatenating list with iterators

2010-07-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: for any *iterable*! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9314 ___ ___

[issue8254] write a configure command

2010-07-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: configure is not config. As I understand it, the config command aimed to be something like ./configure in autotools, thus usable in combination with build and install. configure is different: it is meant to be run once to create a

[issue6610] Subprocess descriptor debacle

2010-07-20 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The patch is small, is there any solid reason for not committing it? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6610

[issue6251] c++ extension module implementation guide/example in extending/embedding documentation

2010-07-20 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: georg.brandl - d...@python nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6251 ___

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-20 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Tal, I agree with your comment, but I believe it applies to #4832 and should be moved there. The patch here fixes (and only fixes) an obvious bug in the filetypes list. -- ___ Python tracker

[issue9311] os.access can return bogus values when run as superuser

2010-07-20 Thread Garrett Cooper
Garrett Cooper yaneg...@gmail.com added the comment: Well, bash screws up in this dept: $ ls -l typescript -rw-r--r-- 1 gcooper gcooper 37875 Jul 12 22:19 typescript $ sudo sh -c 'test -x typescript; echo $?' 1 $ sudo bash -c 'test -x typescript; echo $?' 0 $ csh %if (-x typescript) then if?

[issue3704] cookielib doesn't handle URLs with / in parameters

2010-07-20 Thread John J Lee
John J Lee jj...@users.sourceforge.net added the comment: Hmm, I never tested with Python 3, though I assume the forward-port was straightforward. The patch was created against (2.x) trunk, so indeed it should be committed there also. Deselecting 2.6 since I assume no more maintenance

[issue6976] getcwd hangs and leaks mem on Solaris = 9 in very long file name case

2010-07-20 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: This has just been fixed in issue 9185. -- nosy: +skrah resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - os.getcwd causes infinite loop on solaris ___

  1   2   >