[issue9901] GIL destruction can fail

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: looks similar to issue1856 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue1838] Ctypes C-level infinite recursion

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This function is called quite often. Building a set each time will be expensive. What about a simpler recursion check with Py_EnterRecursiveCall()? -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue1859] textwrap doesn't linebreak on "\n"

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone interested in picking this up? I've tried and fell flat on my face :( -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue1865] Bytes alias for 2.6

2010-09-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

[issue1866] const arg for PyInt_FromString

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Any opinions as to whether the patch should be reworked for 3.2 or not? -- nosy: +BreamoreBoy versions: -Python 2.7 ___ Python tracker ___ _

[issue1874] email parser does not register a defect for invalid Content-Transfer-Encoding on multipart messages

2010-09-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +r.david.murray versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue1875] "if 0: return" not raising SyntaxError

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: msg81023 indicates that more work is needed on this. -- nosy: +BreamoreBoy stage: -> needs patch type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue8432] buildbot: test_send_signal of test_subprocess failure

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: test_subprocess now succeeds on all 3.x buildbots. Will backport and then close. -- resolution: -> fixed status: open -> pending ___ Python tracker ___

[issue1730136] tkFont.__eq__ gives type error

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: The new test case fails on (FreeBSD, OS X) buildbots: == ERROR: test_font_eq (tkinter.test.test_tkinter.test_font.FontTest) -

[issue5673] Add timeout option to subprocess.Popen

2010-09-20 Thread Pablo Bitton
Pablo Bitton added the comment: Has anybody had a chance to look into the problem I encountered yet? Do you need more information? -- ___ Python tracker ___

[issue8845] Expose sqlite3 connection inTransaction as read-only in_transaction attribute

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine also suggested it might be the particular version of sqlite in > use on the buildbot, but I don't currently know what version that is. > Bill, can you clue me in? You could simply print out sqlite3.sqlite_version at the beginning of test_sqlite wh

[issue1584] Mac OS X: building with X11 Tkinter

2010-09-20 Thread C. E. Ball
C. E. Ball added the comment: Sorry, I don't have a Mac, and I don't have access to one that I could use to make a patch. At the time, I was trying to support OS X users of a piece of Python/Tkinter software. Please do not keep this issue open on my account. Thanks, Chris -- _

[issue9898] cProfile.runctx doesn't allow sort argument

2010-09-20 Thread Ram Rachum
Ram Rachum added the comment: Is this going into 3.2? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1866] const arg for PyInt_FromString

2010-09-20 Thread Nick Coghlan
Nick Coghlan added the comment: I'm rejecting this due to the effect it has on the output parameters. The patch ends up have to stick (char *) casts in several places because a pointer into the string provided via the char * input parameter is returned by each affected API to the calling func

[issue8432] buildbot: test_send_signal of test_subprocess failure

2010-09-20 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue9901] GIL destruction can fail

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: It is similar, but the issue is slightly different. Fixing issue1856 with the proposed resolution (the "stay_forever" flag) won't solve this, because the GIL mutex will still refuse to be destroyed if other threads reference it at the same time. --

[issue9901] GIL destruction can fail

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Moving the _PyEval_FiniThreads() call to Py_Initialize() solves the issue: diff -r 9e49082da463 Python/pythonrun.c --- a/Python/pythonrun.cMon Sep 20 12:46:56 2010 +0200 +++ b/Python/pythonrun.cMon Sep 20 13:41:47 2010 +0200 @@ -217,8 +217,15 @@

[issue9873] Allow bytes in some APIs that use string literals internally

2010-09-20 Thread Nick Coghlan
Nick Coghlan added the comment: The design approach (at least for urllib.parse) is to add separate *b APIs that operate on bytes rather than implicitly allowing bytes in the ordinary versions of the function. Allowing programmers to manipulate correctly encoded (and hence ASCII compatible) b

[issue1856] shutdown (exit) can hang or segfault with daemon threads running

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: See #9901 for a variation on the same global issue (running threads can access interpreter structures - the GIL - while the main thread is trying to destroy them). -- ___ Python tracker

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-20 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Sep 18, 2010, at 12:23 PM, Antoine Pitrou wrote: >Antoine Pitrou added the comment: > >Barry's request looks reasonable. Any build information will have >platform specificities to it. Thanks. I'll take that as approval to land it. :) >On the other hand,

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > >On the other hand, this begs the question of why you want to access > >the Python makefile at all. Is there any information in there that > >isn't currently exposed? I think it would be nice if people could > >completely forget about the existence of that fil

[issue1730136] tkFont.__eq__ gives type error

2010-09-20 Thread Guilherme Polo
Guilherme Polo added the comment: Closing this again in favor of issue9899. -- status: open -> closed ___ Python tracker ___ ___ Py

[issue9862] test_subprocess hangs on AIX

2010-09-20 Thread Sébastien Sablé
Sébastien Sablé added the comment: The problem does not happen with Python 2.6. The difference is that: * in Python 2.6, the subprocess module would try to write at most 512 bytes cf L1221 in subprocess.py chunk = input[input_offset : input_offset + 512] * in Python 2.7 and py3k, the subproce

[issue9899] tkinter test_font fails on OS X with Aqua Tk

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch works here (Mandriva Linux). -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mail

[issue1838] Ctypes C-level infinite recursion

2010-09-20 Thread Alex
Alex added the comment: Good idea Amaury, seems to work just fine. -- Added file: http://bugs.python.org/file18936/python_recursive_as_parameter.diff ___ Python tracker ___ _

[issue1887] distutils doesn't support out-of-source builds

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: There's been no reply to msg109822, so should this be closed with the Superseder field updated or what? -- nosy: +BreamoreBoy, eric.araujo ___ Python tracker __

[issue1927] raw_input behavior incorrect if readline not enabled

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Any *NIX gurus who can sort this one? -- nosy: +BreamoreBoy versions: +Python 2.7 -Python 2.6 ___ Python tracker ___

[issue1943] improved allocation of PyUnicode objects

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: No reply to msg110599, I'll close this in a couple of weeks unless anyone objects. -- status: open -> pending ___ Python tracker ___ ___

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

2010-09-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

[issue1953] Compact int and float freelists

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: I've set the stage to patch review becasue I think this reflects the accepted resolution. I don't understand why this hasn't been committed, anyone? -- nosy: +BreamoreBoy stage: -> patch review ___ Python tracker

[issue1962] ctypes feature request: Automatic type conversion of input arguments to C functions

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Is this ever likely to happen, given that there's been 2.75 years since the request without a response? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue1975] signals not always delivered to main thread, since other threads have the signal unmasked

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still an issue? If yes can a *NIX type person action it. If no can we close it? -- nosy: +BreamoreBoy -gvanrossum ___ Python tracker _

[issue1977] Python reinitialization test

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Quote msg83564 "This is still a good idea.", in which case shouldn't someone push this forward, failing that close as out of date? -- nosy: +BreamoreBoy ___ Python tracker

[issue2005] posixmodule expects sizeof(pid_t/gid_t/uid_t) <= sizeof(long)

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that this has never been implemented, am I correct? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue2016] Crash when modifying the **kwargs passed to a function.

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone please backport this to 2.7 so we can get this closed, thanks. -- nosy: +BreamoreBoy versions: +Python 2.7 -Python 2.6 ___ Python tracker ___

[issue2027] Module containing C implementations of common text algorithms

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close this as suggested in msg106281 in a couple of weeks unless someone objects. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker

[issue2016] Crash when modifying the **kwargs passed to a function.

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The fix was applied to trunk before the creation of the 2.7 branch. There is nothing to backport -- status: open -> closed ___ Python tracker

[issue2016] Crash when modifying the **kwargs passed to a function.

2010-09-20 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Mon, Sep 20, 2010 at 10:23 AM, Mark Lawrence wrote: > > Mark Lawrence added the comment: > > Can someone please backport this to 2.7 so we can get this closed, thanks. > AFAICT, r73564 preceded 2.7 branch cut, so the fix is already in 2.7. -

[issue2039] Pymalloc patch for int and float objects

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: If my reading of this is correct there is little or nothing to be gained by applying any patch, hence can this be closed? -- nosy: +BreamoreBoy ___ Python tracker _

[issue5673] Add timeout option to subprocess.Popen

2010-09-20 Thread Reid Kleckner
Reid Kleckner added the comment: No, sorry, I just haven't gotten around to reproducing it on Linux. And I've even needed this functionality in the mean time, and we worked around it with the standard alarm trick! =/ -- ___ Python tracker

[issue2052] Allow changing difflib._file_template character encoding.

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: difflib._file_template is still hard-coded in py3k SVN. I'm unsure as to whether this is a feature request, a behaviour issue or not an issue at all, can someone please advise, thanks. -- nosy: +BreamoreBoy ___ Pyt

[issue1943] improved allocation of PyUnicode objects

2010-09-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2010/9/20 Mark Lawrence : > > Mark Lawrence added the comment: > > No reply to msg110599, I'll close this in a couple of weeks unless anyone > objects. Please don't. This is still a valid issue. -- status: pending -> open

[issue1865] Bytes alias for 2.6

2010-09-20 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-20 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: r84925 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue9862] test_subprocess hangs on AIX

2010-09-20 Thread Sébastien Sablé
Sébastien Sablé added the comment: PIPE_BUF in unistd.h is defined to 32768. The test works with PIPE_BUF changed up to 6144 but won't work with 7168. We could probably use 4096 as a safe value for faster result if needed. I just do not define the value and leave the default of 512 be used. H

[issue9862] PIPE_BUF is invalid on AIX

2010-09-20 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- title: test_subprocess hangs on AIX -> PIPE_BUF is invalid on AIX ___ Python tracker ___ ___ Python-bug

[issue2057] difflib: add patch capability

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Is this really needed? TortoiseSVN is a cracking bit of kit, and I'm hoping that in the future TortoiseHG is as good if not better. -- nosy: +BreamoreBoy ___ Python tracker __

[issue2091] file accepts 'rU+' as a mode

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: The patch is now way out of date to the extent that I can't find the code in fileobject.c, perhaps I'm just blind Can someone please provide a new patch, thanks. -- nosy: +BreamoreBoy versions: +Python 3.1, Python 3.2 -Python 2.6

[issue2123] ctypes pointer not always keeping target alive

2010-09-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue2091] file accepts 'rU+' as a mode

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Of course, the implementation is now in the io module: Modules/_io/_iomodule.c *and* Lib/_pyio.py -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue9898] cProfile.runctx doesn't allow sort argument

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: yes, as you can see in the diffs, it's already in 3.2alpha2. -- ___ Python tracker ___ ___ Pyt

[issue9905] subprocess.Popen fails with stdout=PIPE, stderr=PIPE if standard descriptors (0, 1, 2) are closed.

2010-09-20 Thread Thomas Claveirole
New submission from Thomas Claveirole : Hello, Here is a code that exhibits an invalid behavior (Python 2.6.6): ---8<--- import subprocess, os os.close(0) # Works correctly if any of these two are commented out. os.close(2) print subprocess.Popen('echo foo>&2', shell=True,

[issue1977] Python reinitialization test

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Quote msg83564 "This is still a good idea.", in which case shouldn't > someone push this forward, failing that close as out of date? Just because someone doesn't "push this forward" doesn't mean it's out of date. -- _

[issue9360] nntplib cleanup

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Gah. I reviewed patch4, didn't noticed today's update :( Oops, I'm sorry for that. It turns out most of your comments are useful anyway. > Why is it a good thing to make file a keyword only parameter? I was thinking that if we want to add other function pa

[issue2057] difflib: add patch capability

2010-09-20 Thread anatoly techtonik
anatoly techtonik added the comment: Unified diffs is the preferred type on this tracker as http://www.python.org/dev/patches/ describes. I also sure that they constitute more than 90% of patches attached here. If you have access to tracker attachments - you can test this. Unfortunately, dif

[issue1887] distutils doesn't support out-of-source builds

2010-09-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I suspect so, but I leave it to Eric to decide. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue1887] distutils doesn't support out-of-source builds

2010-09-20 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1800] ctypes callback fails when called in Python with array argument

2010-09-20 Thread Lenard Lindstrom
Lenard Lindstrom added the comment: I have checked over the proposed patch and made a small change that more elegantly obtains PyCArrayType. Decaying arrays into pointers is not an ideal solution. Ctypes arrays have bounds checking (pointers do not) adding an extra margin of safety when a C f

[issue1865] Document bytes alias for 2.7

2010-09-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Changing title to match current issue status. DOC PATCH Grammar section: As near as I can tell, the alternatives for stringprefix::= "r" | "u" | "ur" | "R" | "U" | "UR" | "Ur" | "uR" should simply be augmented with | "b" | "B" | "

[issue1625] bz2.BZ2File doesn't support multiple streams

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is an update of the patch against current py3k. I've added a copyright mention at the top of Modules/bz2module.c which I hope manages to capture the essence of msg93721. Martin, what do you think? -- nosy: +loewis stage: -> patch review versions

[issue9401] automatically try forward operations when reverse operations are NotImplemented

2010-09-20 Thread Michael Gilbert
Michael Gilbert added the comment: i think that, for example, the default __rsub__ implementation could be: return self + -other which should just do the right thing assuming the addition and negation functions already do the right thing for the class type. anyway, any implementation shoul

[issue9906] including elementary mathematical functions in default types

2010-09-20 Thread Michael Gilbert
New submission from Michael Gilbert : hi, it would be really nice if elementary mathematical operations such as sin/cosine (via __sin__ and __cos__) were available as base parts of the python data model [0]. this would make it easier to write new math classes, and it would eliminate the ugli

[issue1531775] HTTPSConnection request hangs

2010-09-20 Thread Charles-Francois Natali
Charles-Francois Natali added the comment: Skimming through the code, the only place where we can reasonably block is inside HTTPConnection._send_output(), when the data is actually sent to the socket. What probably happens is the following: - connect() call succeeded, we have an established T

[issue9901] GIL destruction can fail

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r84927. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> pending ___ Python tracker ___ __

[issue675698] New block cipher API

2010-09-20 Thread intgr
Changes by intgr : -- nosy: +intgr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mail

[issue9650] format codes in time.strptime docstrings

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9845] Allow changing the method in urllib.request.Request

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: +1 on the idea and code patch. Needs test and doc update. -- nosy: +eric.araujo stage: -> patch review versions: +Python 3.2 -Python 3.3 ___ Python tracker _

[issue2057] difflib: add patch capability

2010-09-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Given that difflib produces unified diffs (among 3 others) and that diff.py is a thin command-line wrapper that provides access to all 4 formats (with no default), I consider those two files 'ready'. So I presume you are referring to your patch.py, which is s

[issue9552] ssl build under Windows always rebuilds OpenSSL

2010-09-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > This is the patch I'm thinking of. I confirmed this works > on VS8.0. (After replaced "..\\.." with "..\\..\\..") Works here too (VS 2008)! -- ___ Python tracker ___

[issue9272] CGIHTTPServer poisons os.environ

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- stage: unit test needed -> patch review versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list

[issue9860] Building python outside of source directory fails

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Does this apply to 2.7 too? -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue9850] obsolete macpath module dangerously broken and should be removed

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: I agree with Ronald’s proposal. (Re “I don't remember if I redid my OS9-removal work”: Looks like you didn’t.) -- nosy: +eric.araujo ___ Python tracker __

[issue9847] Binary strings never compare equal to raw/normal strings

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: works for me -> invalid stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-li

[issue7162] 2to3 does not convert __builtins__.file

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: +Python 3.3 -Python 2.6, Python 2.7, Python 3.0 ___ Python tracker ___ ___ Pyt

[issue9272] CGIHTTPServer poisons os.environ

2010-09-20 Thread anatoly techtonik
anatoly techtonik added the comment: So.. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue2175] Expat sax parser silently ignores the InputSource protocol

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: As nobody appears to be interested I'll close this in a couple of weeks unless someone objects. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker ___

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Can you port your diff to 3.2? It’s where new features land. I think the implicit relative import (“import gvgraph” with the Tools/scripts dir is not on sys.path) won’t work. -- nosy: +benjamin.peterson, eric.araujo stage: -> patch review type: -> fea

[issue2180] tokenize: mishandles line joining

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Nobody appears to be interested so I'll close this in a couple of weeks unless someone objects, unless a patch is provided. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker

[issue9597] mac: Install 2to3 in /usr/local/bin

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Which makefile target are you referring to? I see 2to3 listed alongside idle and other programs in some targets. Also, doesn’t this apply to 3.1? -- nosy: +eric.araujo ___ Python tracker

[issue9597] mac: Install 2to3 in /usr/local/bin

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Installation -2to3 (2.x to 3.0 conversion tool), Build, Macintosh ___ Python tracker ___ ___ P

[issue9597] mac: Install 2to3 in /usr/local/bin

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Macintosh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue9583] PYTHONOPTIMIZE = 0 is not honored

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue2193] Cookie Colon Name Bug

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Is this a bug or isn't it, so should it be behaviour or feature request or what? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker _

[issue9571] argparse: Allow the use of -- to break out of nargs and into subparser

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue2200] find_executable fails to find .bat files on win32

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: I think distutils changes should be aimed at several versions, please correct them if I'm wrong. -- nosy: +BreamoreBoy, eric.araujo versions: +Python 2.5, Python 2.6, Python 3.1, Python 3.2 ___ Python tracker

[issue9907] interactive mode TAB does not insert on OS X built with editline instead of GNU readline

2010-09-20 Thread Ned Deily
New submission from Ned Deily : When building Python on OS X, there is now support for linking Python with the readline compatibility interface of the OS X supplied BSD editline library rather than using the GNU readline library. Because of deficiencies in the version in earlier OS X releases

[issue1953] Compact int and float freelists

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The remarks above haven't been addressed. The feature is OK, but the patch is not yet perfect. -- nosy: +amaury.forgeotdarc ___ Python tracker __

[issue2213] build_tkinter.py does not handle paths with spaces

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still valid? -- nosy: +BreamoreBoy, gpolo, taleinat, terry.reedy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___

[issue2175] Expat sax parser silently ignores the InputSource protocol

2010-09-20 Thread Yitz Gale
Yitz Gale added the comment: Perhaps more people would be interested if you raise the priority. This bug can cause serious data corruption, or even crashes. It should also be tagged as "easy". An alternative would be to remove the expat sax parser from the libraries, since we don't support it.

[issue2180] tokenize: mishandles line joining

2010-09-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: Mark, please stop closing these based on age. The needs to be a determination whether this is a valid bug. If so, then a patch is needed. If not, it can be closed. -- assignee: jhylton -> nosy: +rhettinger status: pending -> open _

[issue9907] interactive mode TAB does not insert on OS X built with editline instead of GNU readline

2010-09-20 Thread Ned Deily
Ned Deily added the comment: [Thanks to Nik Krumm for reporting the problem on python-list/comp.lang.python] -- ___ Python tracker ___ ___

[issue4151] Separate build dir broken

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: For the record, I’m not clear about what is fixed or not in each branch. -- ___ Python tracker ___ ___

[issue2057] difflib: add patch capability

2010-09-20 Thread anatoly techtonik
anatoly techtonik added the comment: On Mon, Sep 20, 2010 at 11:58 PM, Terry J. Reedy wrote: > Given that difflib produces unified diffs (among 3 others) and that diff.py > is a thin command-line wrapper that provides access to all 4 formats (with no > default), I consider those two files 're

[issue2027] Module containing C implementations of common text algorithms

2010-09-20 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> rejected status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Sorry for being out of touch. I’m fine with the new feature here and now; we still have the deprecation process if we want to make both get_config_h_filename and get_makefile_filename private later (as implementation details), or we could have them return None

[issue2090] __import__ with fromlist=

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue9906] including elementary mathematical functions in default types

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.smith, lemburg, mark.dickinson, rhettinger, stutzbach type: -> feature request versions: -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.3 ___ Python tracker _

[issue9893] Usefulness of the Misc/Vim/ files?

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Those files are useful for me, even if I had to tweak them slightly. -- nosy: +eric.araujo ___ Python tracker ___ _

[issue9891] Minor doc typo at datamodel.rst: "list" -> "alist"

2010-09-20 Thread Éric Araujo
Changes by Éric Araujo : -- versions: -Python 2.5, Python 2.6, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue9887] distutil's build_scripts doesn't read utf-8 in all locales

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Does POSIX mandate an encoding when using the C locale? -- ___ Python tracker ___ ___ Python-bugs-list

  1   2   >