[issue10670] Provide search scope limits

2010-12-14 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: label:interop -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10670 ___ ___

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

2010-12-14 Thread Xuanji Li
Xuanji Li xua...@gmail.com 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 xua...@gmail.com 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 christian.per...@gmail.com added the comment: I don't know, by doing this on __init__ we can break a lot of legacy codes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10695

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

2010-12-14 Thread Xuanji Li
Xuanji Li xua...@gmail.com 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!

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

2010-12-14 Thread Xuanji Li
Xuanji Li xua...@gmail.com 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 rep...@bugs.python.org http://bugs.python.org/issue10695

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

2010-12-14 Thread Christian S. Perone
Christian S. Perone christian.per...@gmail.com added the comment: Not from Python itself I think, but external, from users. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10695 ___

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2010-12-14 Thread Christian S. Perone
Christian S. Perone christian.per...@gmail.com added the comment: Agree. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10695 ___ ___

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

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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

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

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Bug fix, unittest and documentation added in r87229. Thanks! -- resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6559

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10692 ___ ___

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

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org 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: -

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

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: P.S. Yes I will be backporting all of this to subprocess32. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7213 ___

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

2010-12-14 Thread Matthias Klose
Matthias Klose d...@debian.org 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 amaur...@gmail.com 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

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10695 ___

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

2010-12-14 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org 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

[issue1731717] race condition in subprocess module

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org 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 belopol...@users.sourceforge.net 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,

[issue10700] python pickle.dumps AssertionError

2010-12-14 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: Added file: http://bugs.python.org/file20037/dict-graph.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10700 ___

[issue10701] Error pickling a dict

2010-12-14 Thread Alexander Belopolsky
New submission from Alexander Belopolsky belopol...@users.sourceforge.net: 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 module

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

2010-12-14 Thread Martin Budaj
Martin Budaj m.bu...@gmail.com 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

[issue10700] python pickle.dumps AssertionError

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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 g...@krypto.org 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 rep...@bugs.python.org

[issue10541] regrtest.py -T broken

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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:

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

2010-12-14 Thread Kevin Hendricks
Kevin Hendricks kevin.hendri...@sympatico.ca 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

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

2010-12-14 Thread Kevin Hendricks
Kevin Hendricks kevin.hendri...@sympatico.ca 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

[issue10587] Document the meaning of str methods

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue1731717] race condition in subprocess module

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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

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

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

[issue775964] fix test_grp failing when NIS entries present

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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 ___

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

2010-12-14 Thread Kevin Hendricks
Changes by Kevin Hendricks kevin.hendri...@sympatico.ca: -- keywords: +patch versions: +Python 2.5, Python 2.6 Added file: http://bugs.python.org/file20040/more_robust.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10694

[issue10702] bytes and bytearray methods are not documented

2010-12-14 Thread Alexander Belopolsky
New submission from Alexander Belopolsky belopol...@users.sourceforge.net: 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

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Steve Moran
New submission from Steve Moran s...@uw.edu: 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

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue3080] Full unicode import system

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[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 stutzb...@google.com: -- versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8040 ___ ___

[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 s...@uw.edu: 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

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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

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

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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 -

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

2010-12-14 Thread Steve Moran
Steve Moran s...@uw.edu 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 belopol...@users.sourceforge.net added the comment: Regex 0.1.20101210 is not part of

[issue10667] collections.Counter object in C

2010-12-14 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net 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

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- assignee: - mark.dickinson nosy: +mark.dickinson, mrabarnett ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10703 ___

[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 rdmur...@bitdance.com: -- nosy: +mrabarnett ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10704 ___ ___

[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 rdmur...@bitdance.com: -- stage: - patch review type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5368 ___

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

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8769 ___ ___ Python-bugs-list

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Tue, Dec 14, 2010 at 1:27 PM, Steve Moran rep...@bugs.python.org 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

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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:

[issue8776] Bytes version of sys.argv

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- stage: - needs patch type: - feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8776 ___

[issue8828] Atomic function to rename a file

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- type: - feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8828 ___

[issue9285] A decorator for cProfile and profile modules

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- assignee: collinwinter - stage: - patch review type: - feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9285

[issue9248] multiprocessing.pool: Proposal: waitforslot

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- stage: - patch review type: - feature request versions: +Python 3.3 -Python 2.6, Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9248

[issue9216] FIPS support for hashlib

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9216 ___ ___

[issue9048] no OS X buildbots in the stable list

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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 rdmur...@bitdance.com added the comment: Are there any open problems left here or can this bug be closed? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4506 ___

[issue1525919] email package quoted printable behaviour changed

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1525919 ___ ___

[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 jtm.moon.forum.user+pyt...@gmail.com: 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

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

2010-12-14 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com 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 rep...@bugs.python.org

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com 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

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Nothing jumps to my mind. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4236 ___ ___

[issue8106] SSL session management

2010-12-14 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8106 ___ ___

[issue10706] kill runtests.sh

2010-12-14 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: 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

[issue10707] compileall is broken

2010-12-14 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: $ ./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

[issue10707] compileall is broken

2010-12-14 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10707 ___ ___ Python-bugs-list

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

2010-12-14 Thread Ned Deily
Ned Deily n...@acm.org 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

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

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Works under Windows 7. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453 ___

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

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net 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

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: committed in r87248. -- resolution: - accepted stage: unit test needed - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453

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

2010-12-14 Thread Ned Deily
Ned Deily n...@acm.org 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

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

2010-12-14 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for going through. Nice patch! -- resolution: accepted - fixed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453 ___

[issue10667] collections.Counter object in C

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org 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:

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

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: If you build it yourself, you have other options. Yes, my python3.1 is from MacPorts. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10704

[issue10707] compileall is broken

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - Add -h/--help option to compileall ___ Python tracker rep...@bugs.python.org

[issue10706] kill runtests.sh

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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 belopol...@users.sourceforge.net 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. --

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

2010-12-14 Thread J_Tom_Moon_79
J_Tom_Moon_79 jtm.moon.forum.user+pyt...@gmail.com 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

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

2010-12-14 Thread J_Tom_Moon_79
J_Tom_Moon_79 jtm.moon.forum.user+pyt...@gmail.com 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 rep...@bugs.python.org

[issue3080] Full unicode import system

2010-12-14 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com 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

[issue3080] Full unicode import system

2010-12-14 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com 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

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- assignee: mark.dickinson - nosy: -mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10703 ___

[issue2226] Small _abcoll Bugs / Oddities

2010-12-14 Thread Daniel Stutzbach
Daniel Stutzbach stutzb...@google.com 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):

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com 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 ezio.melo...@gmail.com 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 -

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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 rep...@bugs.python.org

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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 ezio.melo...@gmail.com: -- nosy: -ajaksu2, barry, benjamin.peterson, georg.brandl, loewis versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- priority: normal - release blocker versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___

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

2010-12-14 Thread Daniel Stutzbach
Daniel Stutzbach stutzb...@google.com 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

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord mich...@voidspace.org.uk: -- nosy: +michael.foord ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2212 ___ ___

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk 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

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord mich...@voidspace.org.uk: -- versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2212 ___ ___

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

2010-12-14 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

[issue2771] test issue

2010-12-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- priority: release blocker - deferred blocker versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___

  1   2   >