[issue10670] Provide search scope limits

2010-12-14 Thread anatoly techtonik
anatoly techtonik added the comment: label:interop -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue5863] bz2.BZ2File should accept other file-like objects.

2010-12-14 Thread Xuanji Li
Xuanji Li added the comment: Sorry, I'm giving up. The copyright notice for bz2module.c lists "Gustavo Niemeyer" as one of the holders, is he the maintainer? Maybe he should be notified of this bug. -- ___ Python tracker

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Xuanji Li
Xuanji Li added the comment: Alternatively, I think we can do a conversion to int in Telnet.__init__ (see patch) -- keywords: +patch nosy: +xuanji Added file: http://bugs.python.org/file20035/issue10695.patch ___ Python tracker

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: I don't know, by doing this on __init__ we can break a lot of legacy codes. -- ___ Python tracker ___

[issue10694] zipfile.py end of central directory detection not robust

2010-12-14 Thread Xuanji Li
Xuanji Li added the comment: Hi, I would like to take a look at whether your code works, can you provide an zip file that is currently not read by zipfile but should be? Also, I suggest you submit the code changes as a patch (http://www.python.org/dev/patches/) thanks! -- nosy: +xua

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Xuanji Li
Xuanji Li added the comment: Hi, is there any legacy code that would rely on "port" being stored as a string rather than an integer? -- ___ Python tracker ___ _

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: Not from Python itself I think, but external, from users. -- ___ Python tracker ___ ___ Python

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Yes, for backward compatibility reasons it is better to make the change that fixes the thing that doesn't work and leave the rest alone. Probably the change wouldn't break *much* existing user code, but why break anything when there doesn't seem to be any p

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: Agree. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue5863] bz2.BZ2File should accept other file-like objects.

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Sorry, I'm giving up. Indeed, I think only an extensive rewrite could fulfill the feature request here. > The copyright notice for bz2module.c lists "Gustavo Niemeyer" as one > of the holders, is he the maintainer? Maybe he should be notified of > this bug.

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: Bug fix, unittest and documentation added in r87229. Thanks! -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Starttls support was only added in Python 3.2. Apparently your server is set to disallow non-SSL connections. Have you confirmed that the same server is listening on port 993 as is listening on port 143? The debug info from imaplib makes it look like diff

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue7213] subprocess leaks open file descriptors between Popen instances causing hangs

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: I updated the documentation and changed the close_fds default on Windows to be True when possible per Giovanni's suggestion in r87229. That keeps the API and defaults as consistent as possible across all platforms. -- resolution: -> accepted statu

[issue7213] subprocess leaks open file descriptors between Popen instances causing hangs

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: P.S. Yes I will be backporting all of this to subprocess32. -- ___ Python tracker ___ ___ Python-

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Matthias Klose
Matthias Klose added the comment: shouldn't that option work on platforms too, which currently default to not using the soabi? It would make sense for all posix, and macos, maybe not for Windows. -- ___ Python tracker

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The soabi tag could be useful on Windows as well, for example if some package maintainer chooses another version of the compiler, or a custom version of MSVCRT. And FWIW, PyPy currently uses "--soabi=pypy-1.4" on all platforms: "import foo" will load f

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Fixed in py3k in r87230, with test. Backported to 3.1 in r87231 and 2.7 in r87232. The 2.7 backport doesn't include the test since the test infrastructure for it doesn't exist in the 2.7 test_telnetlib. -- resolution: -> fixed stage: -> committed

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Amaury, did you see my suggestion re $SOBASE and $SOEXTRA? Also, do you think you can write some tests, even if they only run on a single platform? I suspect the Makefile.pre.in part of the patch will have to be updated now. Please be sure to test your chan

[issue1731717] race condition in subprocess module

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: r87233 fixes the OSError escaping from wait() issue when SIGCLD is set to be ignored. (to appear in 3.2beta1; it is a candidate for backporting to 3.1 and 2.7) -- ___ Python tracker

[issue10700] python pickle.dumps AssertionError

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: This is a known problem. See issues #1062277 and #9269. You can work around the issue by using a dict. I am attaching two test files. First, set-graph.py, reproduces the issue in 3.x and the second, dict-graph.py, contains a workaround. -- re

[issue10700] python pickle.dumps AssertionError

2010-12-14 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Added file: http://bugs.python.org/file20037/dict-graph.py ___ Python tracker ___ ___ Python-bugs-list maili

[issue10701] Error pickling a dict

2010-12-14 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : The work-around that I proposed for issue10700 does not work with Python 2.x: $ python2.7 dict-graph.py Vertex 0 -> 2, 1 Vertex 1 -> Vertex 2 -> Traceback (most recent call last): File "dict-graph.py", line 74, in p = pickle.dumps(g) ... Fi

[issue10515] csv sniffer does not recognize quotes at the end of line

2010-12-14 Thread Martin Budaj
Martin Budaj added the comment: > What do you mean by "there is a test for this case in csv.py"? I meant test in regex on line 217 in python 2.7 and the following code (line 258ff): # there is *no* delimiter, it's a single column of quoted data delim = '' skipinitialspace = 0 However, it i

[issue10700] python pickle.dumps AssertionError

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: It turns out that dict-graph.py does not work with python2.x, but that is a different problem, so I opened a separate issue for it. See issue10701. -- ___ Python tracker _

[issue1731717] race condition in subprocess module

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: sorry, i meant 3.2beta2 above. release27-maint: r87234 targeting 2.7.2 release31-maint: r87235 targeting 3.1.4 -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue10541] regrtest.py -T broken

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Here is a simpler invocation that produces a similar error: $ ./python.exe -m test.regrtest -T test_trace test_pkg ... IOError: [Errno 2] No such file or directory: '/var/folders/qs/qsqFUI2xFUKG+9CTf4z7pU+++TI/-Tmp-/tmpy1iyp7/t4/sub/__init__.py' -

[issue10694] zipfile.py end of central directory detection not robust

2010-12-14 Thread Kevin Hendricks
Kevin Hendricks added the comment: If you read the bug report it explains how to generate a testcase (i.e. append any data to the end of a zip archive) Here it is as a step by step process 1. simply take any working zip and call it testcase.zip 2. do the following: echo "\r\n" >> testcase

[issue10694] zipfile.py end of central directory detection not robust

2010-12-14 Thread Kevin Hendricks
Kevin Hendricks added the comment: Here is one potential patch. It simply incorporates and non-comment extraneous data into a final comment so that nothing is lost. Another solution that might be safer, would be to truncate the zip archive immediately after the endrec is found if the extran

[issue10587] Document the meaning of str methods

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am attaching a patch that expands the documentation of isalnum, isalpha, isdecimal, isdigit, isnumeric, islower, isupper, and isspace. I did not change isidentifier or isprintable because their docs were already complete. I also left out istitle bec

[issue7183] did 2.6.3 regress for some uses of the __doc__ property?

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Since boost has changed their code and no one else has reported a problem and 2.6 is now in bug fix only mode, I'm going to close this as out of date (sorry I overlooked it for 2.6.5). If anyone disagrees, let me know what we should change and why in 2.7.

[issue1731717] race condition in subprocess module

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: It seems the canonical spelling is SIGCHLD. SIGCLD doesn't exist everywhere and it produces test failures under OS X: http://www.python.org/dev/buildbot/all/builders/AMD64%20Leopard%203.x http://www.python.org/dev/buildbot/all/builders/AMD64%20Snow%20Leopard%2

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: It seems there are (intermittent?) test failures: == FAIL: test_pass_fds (test.test_subprocess.POSIXProcessTestCase) -- Trace

[issue775964] fix test_grp failing when NIS entries present

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Committed to py3k in r87238, 3.1 in r87239, and 2.7 in r87240. Thanks, Bobby. -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue10694] zipfile.py end of central directory detection not robust

2010-12-14 Thread Kevin Hendricks
Changes by Kevin Hendricks : -- keywords: +patch versions: +Python 2.5, Python 2.6 Added file: http://bugs.python.org/file20040/more_robust.diff ___ Python tracker ___ __

[issue10702] bytes and bytearray methods are not documented

2010-12-14 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : Library reference manual has a section dedicated to string methods [1], but similar methods of bytes and bytearray types are not documented. Adding two new sections would probably be too repetitious, so I wonder if it would make sense to add notes ab

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Steve Moran
New submission from Steve Moran : The regex package doesn't seem to correctly implement the single grapheme match "\X" (\P{M}\p{M}*) for pre-Python 3. I'm using the string "íi-te" (i, U+0301, i, -, t, e -- where U+0301 is Unicode COMBINING ACUTE ACCENT), reading it in from a file to bypass Uni

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Brett applied his doc patch in r69092. Attached is a patch that combines Simon's patch with Martin's test program turned into a unit test. I confirm that the test suite passes with the patch applied (and fails with just the test applied). >From the text o

[issue3080] Full unicode import system

2010-12-14 Thread R. David Murray
R. David Murray added the comment: With #1342 fixed, it seems that this issue is no longer critical (Haypo describes his complicated patch as "useful on Windows", but not critical. So I'm downgrading it to 'high'. Perhaps it is even 'normal'. It also seems as though it is currently languis

[issue8040] It would be nice if documentation pages linked to other versions of the same document

2010-12-14 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- versions: -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Steve Moran
New submission from Steve Moran : Package doesn't want to install on Mac OS X 10.6.5 with Python 3.1 using instructions "python3.1 setup.py install" (or "sudo python3.1 setup.py install"). Compiling with an SDK that doesn't seem to exist: /Developer/SDKs/MacOSX10.4u.sdk Extended error log at

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Regex 0.1.20101210 is not part of the standard Python distribution, so this bug report is invalid. -- nosy: +belopolsky resolution: -> invalid status: open -> closed superseder: -> Regexp 2.7 (modifications to current re 2.2.2) ___

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Regex 0.1.20101210 is not part of the standard Python distribution, so this bug report is invalid. See issue2636 for the development status of regex. -- nosy: +belopolsky resolution: -> invalid status: open -> closed superseder: -> Regexp 2.7

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Steve Moran
Steve Moran added the comment: Yeah, it's not immediately clear how to bring this up at http://bugs.python.org/issue2636 On Tue, 14 Dec 2010, Alexander Belopolsky wrote: > > Alexander Belopolsky added the comment: > > Regex 0.1.20101210 is not part of the standard Python distribution, so thi

[issue10667] collections.Counter object in C

2010-12-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Attaching a new patch for high-speed update() and __init__(). I also tried a C version of __missing__() but the speed-up was too small to be worth it. -- resolution: later -> stage: -> patch review versions: +Python 3.2 -Python 3.3 Added file: ht

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> mark.dickinson nosy: +mark.dickinson, mrabarnett ___ Python tracker ___ ___ Python-bugs-

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- nosy: +mrabarnett ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue5368] curses patch add color_set and wcolor_set , and addchstr family of functions

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue8769] Straightforward usage of email package fails to round-trip

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue4402] os.getenv('PATH') return different result between 2.5 and 3.0rc3

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Looks like it is "won't fix", since it hasn't been. It doesn't seem as though it is our responsibility to clean up crud in the windows registry introduced by other distributions. -- assignee: loewis -> nosy: +r.david.murray resolution: -> wont fix

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Tue, Dec 14, 2010 at 1:27 PM, Steve Moran wrote: .. > Yeah, it's not immediately clear how to bring this up at > > http://bugs.python.org/issue2636 > This is the URL listed as the home page for regex 0.1.20101210 on PyPI [1], so I assume the author(s)

[issue8127] Add link to PortingPythonToPy3k to What's New documentation

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Raymond, I'm adding you as nosy even though I'm closing the issue as out of date in case you do want to add a link in the 3.2 What's New. -- nosy: +r.david.murray, rhettinger resolution: -> out of date status: open -> closed type: -> feature request

[issue8776] Bytes version of sys.argv

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ _

[issue9967] encoded_word regular expression in email.header.decode_header()

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue8828] Atomic function to rename a file

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list

[issue9285] A decorator for cProfile and profile modules

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: collinwinter -> stage: -> patch review type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ _

[issue9248] multiprocessing.pool: Proposal: "waitforslot"

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request versions: +Python 3.3 -Python 2.6, Python 2.7 ___ Python tracker ___

[issue9216] FIPS support for hashlib

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue9048] no OS X buildbots in the stable list

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Thanks to Steven Hansen there are now OSX buildbots in the stable list. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> feature request ___ Python tracker

[issue4506] 3.0 make test failures on Solaris 10

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Are there any open problems left here or can this bug be closed? -- ___ Python tracker ___ ___ Pyth

[issue1525919] email package quoted printable behaviour changed

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread J_Tom_Moon_79
New submission from J_Tom_Moon_79 : Function HTTPConnection.set_debuglevel(level) There is no range of acceptable debug levels. What should be the difference in set_debuglevel(1) and set_debuglevel(1000)? If the documentation lists the levels this would save users from needing to do tedious tria

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Matthew Barnett
Matthew Barnett added the comment: I use Windows XP, so I can't help with MacOS X. >From the error log it looks like it doesn't like the sources for Python either! -- ___ Python tracker __

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Or, since this is Python, they could look at the code and find out that all levels above zero are equivalent. (If I had to guess I'd say 'level' was either future proofing or designed for the use of subclasses). But you are right, this should be mentioned i

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Matthew Barnett
Matthew Barnett added the comment: The regex module is intended to replace the re module, so its default behaviour is the same: in Python 2, regexes default to matching ASCII, and in Python 3, they default to matching Unicode. If you want to use a regex on a Unicode string in Python 2 then yo

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread Brett Cannon
Brett Cannon added the comment: Nothing jumps to my mind. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue8106] SSL session management

2010-12-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10706] kill runtests.sh

2010-12-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : There are two official ways to run tests: - "make test" for beginners - "./python -m test [etc.]" for experts runtests.sh serves no useful purpose and had completely outdated reporting, making it potentially confusing for newcomers who would try to test it.

[issue10707] compileall is broken

2010-12-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : $ ./python -m compileall Traceback (most recent call last): File "/home/antoine/py3k/__svn__/Lib/runpy.py", line 160, in _run_module_as_main "__main__", fname, loader, pkg_name) File "/home/antoine/py3k/__svn__/Lib/runpy.py", line 73, in _run_code

[issue10707] compileall is broken

2010-12-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Ned Deily
Ned Deily added the comment: The 10.4u SDK is an optional install in the OS X 10.6 Xcode Developer Tools package. There is an option in the Xcode installer to customize; just select the 10.4u package to install it. -- nosy: +ned.deily ___ Python t

[issue10453] Add -h/--help option to compileall

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Works under Windows 7. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: FWIW, I was able to install Regex 0.1.20101210 on OSX 10.6.4, Developer Information: Version: 3.2 (10M2003) Location: /Developer Applications: Xcode:3.2.1 (1613) Interface Builder:3.2.1 (740) Instruments: 2.0.1 (1096)

[issue10453] Add -h/--help option to compileall

2010-12-14 Thread R. David Murray
R. David Murray added the comment: committed in r87248. -- resolution: -> accepted stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Ned Deily
Ned Deily added the comment: When you use python 3.1 from a python.org OS X installer, it is built with the 10.4u SDK and a deployment target of 10.3 and up. Distutils ensures that any extension modules are built using the same values as the interpreter itself which is why the 10.4u SDK is ne

[issue10453] Add -h/--help option to compileall

2010-12-14 Thread Éric Araujo
Éric Araujo added the comment: Thanks for going through. Nice patch! -- resolution: accepted -> fixed ___ Python tracker ___ ___ Pyt

[issue10667] collections.Counter object in C

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: rhettinger's fastcount.patch looks good to me. a couple style nits but they're minor. no space between if and (? yuck. short variable names like "it"? yuck. but the code looks good otherwise. i'm all for it. -- nosy: +gregory.p.smith ___

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > If you build it yourself, you have other options. Yes, my python3.1 is from MacPorts. -- ___ Python tracker ___ __

[issue10707] compileall is broken

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Add -h/--help option to compileall ___ Python tracker _

[issue10706] kill runtests.sh

2010-12-14 Thread R. David Murray
R. David Murray added the comment: +1 As far as I could tell it is left over from the pre-unittest days and not completely updated. A few people may miss it, but they'll learn :) -- nosy: +r.david.murray ___ Python tracker

[issue10541] regrtest.py -T broken

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am attaching a patch that fixes write_results() and makes test_trace tests restore the tracefunc after they run. This fixes generation off the coverage files, but many tests still fail when traced. -- keywords: +patch stage: needs patch -> pa

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread J_Tom_Moon_79
J_Tom_Moon_79 added the comment: Hi David, Currently the 3.1 documentation reads: """HTTPConnection.set_debuglevel(level)¶ Set the debugging level (the amount of debugging output printed). The default debug level is 0, meaning no debugging output is printed.""" How about: """HTTPConnection.

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread J_Tom_Moon_79
J_Tom_Moon_79 added the comment: > Care to propose a patch? oops. I just found http://www.python.org/dev/patches/ I'll get around to creating a PEP sometime soon. -- ___ Python tracker ___

[issue3080] Full unicode import system

2010-12-14 Thread STINNER Victor
STINNER Victor added the comment: > Haypo describes his complicated patch as "useful on Windows", > but not critical Usecase on Windows: your japanese friend gives you an USB key (eg. created on Windows with code page 932) with his Python project, you cannot run it on your english speaking W

[issue3080] Full unicode import system

2010-12-14 Thread STINNER Victor
STINNER Victor added the comment: > Haypo describes his complicated patch as "useful on Windows", > but not critical Usecase on Windows: your japanese friend gives you an USB key (eg. created on Windows with code page 932) with his Python project, you cannot run it on your english speaking W

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: mark.dickinson -> nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailin

[issue2226] Small _abcoll Bugs / Oddities

2010-12-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Minor point of clarity: you mean __rand__ not __radd__, right? Set objects do not support addition at all. Adding the __rand__ methods to collections.Set in and of itself is straightforward: def __rsub__(self, other): return self._from_iterabl

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mail

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Ezio Melotti added the comment: testing autonosy for release managers with release blockers -- nosy: +barry, benjamin.peterson, ezio.melotti, georg.brandl priority: normal -> release blocker ___ Python tracker

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Ezio Melotti added the comment: Works fine. Now release managers will be added automatically to the nosy list when the priority of an issue is set to 'release blocker'. See http://psf.upfronthosting.co.za/roundup/meta/issue363 -- priority: release blocker -> normal ___

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Committed to py3k in r87251, 3.1 in r87252, and 2.7 in r87255. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: I think a PEP is a bit of overkill for a small doc update :) A patch would be fine...but I can also just make the change. I'll probably tweak your wording a bit. -- ___ Python tracker

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: -ajaksu2, barry, benjamin.peterson, georg.brandl, loewis versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- priority: normal -> release blocker versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mail

[issue8743] set() operators don't work with collections.Set instances

2010-12-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Would it be sufficient to: 1) Restrict collections.Set()'s operators to accept collection.Set but not arbitrary iterables, and 2) Fix Issue2226 and let set() | MySimpleSet() work via collections.Set.__ror__ Attached is a patch that implements this approach,

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord : -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Michael Foord added the comment: Presumably not an issue for 3.1/3.2. (Terry - I assume Sean means the fix is in the bug report comment when he says 'inline'.) A patch and a test would still be nice. -- versions: +Python 2.7 -Python 2.6 ___ Python

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: I've committed a fix in r87256. I looked at the code some more and tried to be a precise as possible without getting too wordy. (The fix will get backported by and by.) -- resolution: -> fixed stage: -> committed/rejected status: open -> closed

  1   2   >