[issue14107] Debian bigmem buildbot hanging in test_bigmem

2012-02-27 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: test_bigmem now passes on the buildbot: http://python.org/dev/buildbot/all/builders/AMD64%20debian%20bigmem%203.x/builds/149/steps/test/logs/stdio -- ___ Python tracker

[issue1531415] parsetok.c emits warnings by writing to stderr

2012-02-27 Thread Michele Orrù
Michele Orrù maker...@gmail.com added the comment: I am interested in solving this bug. If I understood correctly, that should be just a matter of spitting over sys.stdout whenever the user imports warnings.py, sys.stderr otherwise. Rewriting the code in C for python3.x would still be

[issue14129] Corrections for the extending doc

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: in this case, nothing more than every Python object contains There's a grammar error lurking somewhere in there... It could be: “nothing more that what every Python object contains”. Could you post a patch for review? --

[issue13086] Update howto/cporting.rst so it talks about Python 3 instead of 3.0

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: +can simply switch to :c:type:`Capsule`. If you need to support Python 3.0, +or versions of Python earlier than 2.7, +you'll have to support both CObjects and Capsules. We pretend that Python 3.0 never existed, or was a beta. Python 3.1 is the

[issue14113] Failure in test_strptime on Windows

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: ... it seems that getlocale() doesn't accept LC_ALL as its argument: The current situation is not ideal. getlocale() is documented to fail (category may be one of the LC_* values except LC_ALL), but it only fails if there's a semicolon

[issue13224] Change str(x) to return only the (qual)name for some types

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Is your specific question whether it is okay that str(Counter.update) returns 'Counter.update'? Yes, sorry if I was unclear. Yes, it is. Same for Top.Nested.method. Good! I’ll commit soon. I’ll make a note in Misc/NEWS, but I don’t think

[issue14123] Indicate that there are no current plans to deprecate printf-style formatting

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Apparently this was too urgent too wait for my patch :) Not closing yet, as there are still phrasing issues discussed on python-dev. -- assignee: eric.araujo - nosy: +gregory.p.smith ___ Python

[issue14113] Failure in test_strptime on Windows

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 1ea466240792 by Stefan Krah in branch 'default': Issue #14113: Fix a test_strptime failure caused by changes to LC_ALL. http://hg.python.org/cpython/rev/1ea466240792 --

[issue6884] Impossible to include file in sdist that starts with 'build' on Win32

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: [Nadeem] Not sure about a CI service, but if you want Windows for your own machine I believe you can get a free MSDN subscription: Yep, I have one of these and downloaded an ISO, but I haven’t yet managed to set it up with qemu. [Adam] ZTK

[issue14094] nt.realpath() should use GetFinalPathNameByHandle() when available

2012-02-27 Thread Petri Lehtinen
Changes by Petri Lehtinen pe...@digip.org: -- nosy: +petri.lehtinen ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14094 ___ ___ Python-bugs-list

[issue14088] sys.executable generating canonical path

2012-02-27 Thread Petri Lehtinen
Petri Lehtinen pe...@digip.org added the comment: Éric Araujo wrote: I wonder if the doc for sys.executable should mention that .. segments may be present. Once this is fixed, it should say that .. segments may be present if there's realpath() is not available. --

[issue14123] Indicate that there are no current plans to deprecate printf-style formatting

2012-02-27 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: needs patch - committed/rejected type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14123 ___

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I don’t remember how I did it last time, but yesterday I was able to reproduce the bug. I have added unit tests, as the lines I added to the doctest were actually no run (I’m working on it in #13953), and applied the fix. I will push shortly.

[issue14080] Sporadic test_imp failure

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I think there's another problem on Windows even after the fix: http://www.python.org/dev/buildbot/all/builders/x86%20Windows7%203.x/builds/4463 == FAIL:

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 32cb52bee738 by Éric Araujo in branch 'default': Fix comparison bug with 'rc' versions in packaging.version (#11841). http://hg.python.org/cpython/rev/32cb52bee738 -- ___

[issue13873] SIGBUS in test_big_buffer() of test_zlib on Debian bigmem buildbot

2012-02-27 Thread Nadeem Vawda
Changes by Nadeem Vawda nadeem.va...@gmail.com: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13873 ___

[issue14139] test_ftplib: segfault

2012-02-27 Thread Stefan Krah
New submission from Stefan Krah stefan-use...@bytereef.org: Seen on a Windows buildbot: http://www.python.org/dev/buildbot/all/builders/x86%20XP-5%203.x/builds/4223/steps/test/logs/stdio Fatal Python error: Segmentation fault Current thread 0x07e4: File

[issue14140] packaging tests: add helpers to create and inspect a tree of files

2012-02-27 Thread Éric Araujo
New submission from Éric Araujo mer...@netwok.org: Many packaging tests use functions like os.mkdir and open to create files in order to test commands or actions, or slightly higher-level helpers like packaging.tests.support.TempdirManager.write_file. I think this could be much more

[issue6884] Impossible to include file in sdist that starts with 'build' on Win32

2012-02-27 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: Yep, I have one of these and downloaded an ISO, but I haven’t yet managed to set it up with qemu. You might want to give VirtualBox a try - I've found it very easy to set up. Please file reports for the bugs you’ve found, on this

[issue13193] packaging.tests.test_manifest and distutils.tests.test_filelist failures

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4d6a9f287543 by Éric Araujo in branch 'default': Fix bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/distutils2/rev/4d6a9f287543 -- ___ Python

[issue14004] Distutils filelist selects too many files on Windows

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4d6a9f287543 by Éric Araujo in branch 'default': Fix bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/distutils2/rev/4d6a9f287543 -- ___ Python

[issue13974] packaging: test for set_platform()

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset fae9d7aa7fc9 by Éric Araujo in branch 'default': Add test for util.set_platform (#13974). http://hg.python.org/distutils2/rev/fae9d7aa7fc9 New changeset 7d1a7251d771 by Éric Araujo in branch 'python3': Merge fixes

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset c82c97b2eae1 by Éric Araujo in branch 'default': Fix comparison bug with 'rc' versions (#11841) http://hg.python.org/distutils2/rev/c82c97b2eae1 New changeset 7d1a7251d771 by Éric Araujo in branch 'python3': Merge

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4d6a9f287543 by Éric Araujo in branch 'default': Fix bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/distutils2/rev/4d6a9f287543 -- ___ Python

[issue14140] packaging tests: add helpers to create and inspect a tree of files

2012-02-27 Thread Nadeem Vawda
Changes by Nadeem Vawda nadeem.va...@gmail.com: -- nosy: +nadeem.vawda ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14140 ___ ___

[issue6884] Impossible to include file in sdist that starts with 'build' on Win32

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4d6a9f287543 by Éric Araujo in branch 'default': Fix bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/distutils2/rev/4d6a9f287543 New changeset 7d1a7251d771 by Éric Araujo in branch 'python3':

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks again for the patch. Next time I say that I couldn’t reproduce a bug, please insist :) -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python

[issue6884] Impossible to include file in sdist that starts with 'build' on Win32

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’ve been recommended VirtualBox, but I don’t have Qt libs on my machine (I don’t have much disk space and I don’t like Qt :) Happily closing as fixed. -- status: open - closed ___ Python tracker

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Filip Gruszczyński
Filip Gruszczyński grusz...@gmail.com added the comment: I prefer to be humble and trust core devs, when I post some patch to a codebase I don't know very well. I am glad you managed to reproduce it and I could help :-) -- ___ Python tracker

[issue11841] packaging.version: Bug when comparing versions with rc marker

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Having push rights does not make me smarter :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11841 ___

[issue13756] Python3.2.2 make fail on cygwin

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Martin, any input? Uncompressed patch attached. Plain text files are easier to review and devoid of security issues (unlike executables on Windows, PDFs if you’re using Adobe Reader, etc.). -- Added file:

[issue12394] packaging: generate scripts from callable (dotted paths)

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I merged default yesterday and produced this patch. I’ll use the review site to make comments. -- Added file: http://bugs.python.org/file24658/9a7dba6e6f1a.diff ___ Python tracker

[issue12394] packaging: generate scripts from callable (dotted paths)

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Or I won’t, as even a dumb no-git-style diff does not create a review link, maybe because of the binary file change. *Sigh* Trying again. -- Added file: http://bugs.python.org/file24659/9a7dba6e6f1a.diff

[issue12394] packaging: generate scripts from callable (dotted paths)

2012-02-27 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: Removed file: http://bugs.python.org/file24658/9a7dba6e6f1a.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12394 ___

[issue12394] packaging: generate scripts from callable (dotted paths)

2012-02-27 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: Removed file: http://bugs.python.org/file23008/7099110c8f14.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12394 ___

[issue8668] Packaging: add a 'develop' command

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Merged yesterday and created this patch. Will refresh my memories by reading all messages again and review. -- dependencies: -Add **kwargs to reinitialize_command Added file: http://bugs.python.org/file24660/fe817128d2fc.diff

[issue10713] re module doesn't describe string boundaries for \b

2012-02-27 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: This is a new patch based on Martin work. I don't think it's necessary to explain what happens while using r'\b' or r'\B' on an empty string in the doc -- that's not a common case and it might end up confusing users. I think however that

[issue5302] Allow package_data specs/globs to match directories

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: For consistency with the resources section, a recursive glob should be mydata/**, not mydata/* or bare mydata. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5302

[issue13167] Add get_metadata to packaging

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the feedback. So, that would mean instead of get_distribution(name).metadata['Version'] you'd use get_metadata(name)['Version'] ? I'm not sure that's really buys you much. Yeah. At the moment we also have

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Nice! This also fixes the leak in test_concurrent_futures. The time-related test failures probably also have a single source. I ran the whole test suite on x64 with no (new) failures. -- ___

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset ba51573fcf90 by Stefan Krah in branch 'default': Issue #14125: Fix multiprocessing refleak on Windows. Patch by sbt. http://hg.python.org/cpython/rev/ba51573fcf90 -- nosy: +python-dev

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread sbt
sbt shibt...@gmail.com added the comment: The attached patch fixes the time related refleaks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14125 ___

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread sbt
sbt shibt...@gmail.com added the comment: Ah. Forgot the patch. -- Added file: http://bugs.python.org/file24662/time_strftime_leak.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14125

[issue12567] curses implementation of Unicode is wrong in Python 3

2012-02-27 Thread Nicholas Cole
Nicholas Cole nicholas.c...@gmail.com added the comment: It looks to me as if the documentation in the release candidates for 2.7.3 and 3.2.3 haven't been updated to include the new curses fixes. Is that correct? -- ___ Python tracker

[issue12567] curses implementation of Unicode is wrong in Python 3

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Yes, it was only fixed for 3.3. -- nosy: +eric.araujo stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12567 ___

[issue10713] re module doesn't describe string boundaries for \b

2012-02-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Like it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10713 ___ ___ Python-bugs-list mailing

[issue14129] Corrections for the extending doc

2012-02-27 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Patch attached -- keywords: +patch stage: - patch review Added file: http://bugs.python.org/file24663/issue_14129.1.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14129

[issue8739] Update to smtpd.py to RFC 5321

2012-02-27 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8739 ___ ___ Python-bugs-list

[issue14026] test_cmd_line_script should include more sys.argv checks

2012-02-27 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14026 ___ ___

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - patch review versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8706 ___

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset d4adbf908983 by Stefan Krah in branch 'default': Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing http://hg.python.org/cpython/rev/d4adbf908983 --

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: sbt, thanks again! I chose a different approach because on non-Windows the unused 'error' label produced compiler warnings. -- ___ Python tracker rep...@bugs.python.org

[issue1531415] parsetok.c emits warnings by writing to stderr

2012-02-27 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Not quite, Michele. So this bug is about taking the stuff that is printed to stdout/stderr explicitly in parsetok.c and instead using the warnings functions, e.g. PyErr_Warn(), since _warnings is a built-in module (now) and thus is available to

[issue14133] improved PEP 409 implementation

2012-02-27 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Now with doc changes! -- Added file: http://bugs.python.org/file24664/pep415.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14133

[issue14080] Sporadic test_imp failure

2012-02-27 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: This is issue #14052 all over again, just with a different test. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14080 ___

[issue14067] Avoid more stat() calls in importlib

2012-02-27 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Well, we already have a delay in detecting new files in importlib as the directory mtime check already adds a delay of the granularity of the mtime value for a directory. So if you manage to mutate a directory, import, write a file, and then

[issue14141] 2.7.2 64-bit Windows library has __impt_Py* for several symbols instead of __imp__Py*

2012-02-27 Thread Steve McConnel
New submission from Steve McConnel stephen_mccon...@sil.org: The Python27.lib file shipped with the 64-bit Windows installer (.msi) has several symbols with improper values. The problem appears to be a single underscore instead of a double underscore between __imp and Py in the symbol.

[issue14141] 2.7.2 64-bit Windows library has __impt_Py* for several symbols instead of __imp__Py*

2012-02-27 Thread Nadeem Vawda
Changes by Nadeem Vawda nadeem.va...@gmail.com: -- components: +Windows nosy: +brian.curtin, loewis, nadeem.vawda, tim.golden stage: - needs patch type: - compile error versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset b4321f93e3f2 by Stefan Krah in branch '3.2': Issue #14125: backport refleak fix (d4adbf908983). http://hg.python.org/cpython/rev/b4321f93e3f2 -- ___ Python tracker

[issue14125] Windows: failures in refleak mode

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Test suite is OK also on 3.2. Closing. -- components: +Tests resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue13756] Python3.2.2 make fail on cygwin

2012-02-27 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: The removal of testing for ncurses.h is incorrect: this should break the Linux build, where ncurses.h is indeed commonly located in /usr/include. Not sure how to proceed here: if somebody would try to reproduce the problem, they would

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: At a quick glance, I think you've got the right idea. Fixing this involves a lot of PyArg_ParseTuple - PyArg_ParseTupleAndKeywords upgrades all over the place. Obviously there are are a wide range of things that can use updating for this

[issue14129] Corrections for the extending doc

2012-02-27 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Thanks for the review. I'm going to do the commit now. Feel free to just fix it if any obvious mistakes remain. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14129

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Filip Gruszczyński
Filip Gruszczyński grusz...@gmail.com added the comment: Do you think I should put everything into a single patch or rather slowly add new patches with different methods or method groups? I would rather split it into several patches, I think it is easier to manage them, especially that this

[issue14129] Corrections for the extending doc

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 6c737eb12c3e by Eli Bendersky in branch 'default': Some corrections for the Doc/extending documentation. Closes #14129 http://hg.python.org/cpython/rev/6c737eb12c3e -- nosy: +python-dev resolution: - fixed

[issue14142] getlocale(LC_ALL) behavior

2012-02-27 Thread Stefan Krah
New submission from Stefan Krah stefan-use...@bytereef.org: This came up in #14113. getlocale(LC_ALL) is documented to fail, at least that's how I read this: category may be one of the LC_* values except LC_ALL. But in fact getlocale(LC_ALL) works if there is no semicolon in the locale

[issue14113] Failure in test_strptime on Windows

2012-02-27 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I've created #14142 for the getlocale(LC_ALL) situation. The main issue is fixed, Nadeem's changes result in better error messages, so I think we can close this. Perhaps the assertEqual changes should be backported to 3.2 and 2.7 to keep

[issue14113] Failure in test_strptime on Windows

2012-02-27 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: Perhaps the assertEqual changes should be backported to 3.2 and 2.7 to keep the files in sync (leaving the issue open for that). Agreed. I'll also make similar changes to the other test cases; my initial changes only touched the tests

[issue14107] Debian bigmem buildbot hanging in test_bigmem

2012-02-27 Thread Charles-François Natali
Changes by Charles-François Natali neolo...@free.fr: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14107

[issue14139] test_ftplib: segfault

2012-02-27 Thread Nadeem Vawda
Changes by Nadeem Vawda nadeem.va...@gmail.com: -- nosy: +nadeem.vawda ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14139 ___ ___

[issue14131] test_threading failure on WIndows 7 3.x buildbot

2012-02-27 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: A very similar failure in test_thread: http://www.python.org/dev/buildbot/all/builders/x86%20Windows7%203.x/builds/4469/steps/test/logs/stdio -- status: pending - open ___ Python tracker

[issue12151] test_logging fails sometimes

2012-02-27 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: A similar failure to msg136576 has cropped up on the Windows 7 bot: http://www.python.org/dev/buildbot/all/builders/x86%20Windows7%203.x/builds/4469/steps/test/logs/stdio -- nosy: +nadeem.vawda

[issue1116520] Prefix search is filesystem-centric

2012-02-27 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- nosy: +eric.snow ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1116520 ___ ___

[issue14080] Sporadic test_imp failure

2012-02-27 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: This is issue #14052 all over again, just with a different test. I don't think so, because I've whacked the part of importlib that transformed '' into os.getcwd(). -- ___ Python tracker

[issue13125] test_all_project_files() expected failure

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 2fd68efac05a by Antoine Pitrou in branch '3.2': Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. http://hg.python.org/cpython/rev/2fd68efac05a New changeset e721b2b74b59 by Antoine Pitrou

[issue13125] test_all_project_files() expected failure

2012-02-27 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Thank you for the patch, Mikhail. I got Benjamin to give it the ok and so it's now committed in 3.2 and 3.3! -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python

[issue14143] test_ntpath failure on Windows

2012-02-27 Thread Nadeem Vawda
New submission from Nadeem Vawda nadeem.va...@gmail.com: http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%203.x/builds/6075/steps/test/logs/stdio FAIL: test_time (test.test_ntpath.NtCommonTest) --

[issue13405] Add DTrace probes

2012-02-27 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Marc, OpenIndiana is one of the platforms I am testing myself :-). If you can try FreeBSD 9.0, that would be amazing. I have committed the skip of jstack() test in darwin, since we know that the code is not actually ported to MacOS X. The main

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Several patches for sure! and give the patch files useful names indicating which things they touch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8706

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: On one hand I agree that it would be nice to get rid of these implementation details that prevent some C functions/methods to accept keyword args, but on the other hand I'm not sure that changing them all is the right thing to do. For some

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: For some functions/methods being able to pass keyword args make the code more readable/flexible, but for some other there's no real gain. I know what you're saying with the last part, but I think everyone becomes a winner in the consistency

[issue12151] test_logging fails sometimes

2012-02-27 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: A similar failure to msg136576 has cropped up on the Windows 7 bot: http://www.python.org/dev/buildbot/all/builders/x86%20Windows7%203.x/builds/4469/steps/test/logs/stdio Right. Not making excuses, but this one is rather hard to find,

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: FWIW PyPy doesn't seem to support keyword args for e.g. str.join() (so that's extra work for them too), and I don't see what would be the advantage of being able to do '-'.join(iterable=a_list). Even if I also don't see a valid reason

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Filip Gruszczyński
Filip Gruszczyński grusz...@gmail.com added the comment: I would stay away from methods that accept just a single argument. For those that accept more, I think it's reasonable to allow keyword args. -- ___ Python tracker rep...@bugs.python.org

[issue4806] Function calls taking a generator as star argument can mask TypeErrors in the generator

2012-02-27 Thread Jon Brandvein
Changes by Jon Brandvein jon.brandv...@gmail.com: -- nosy: +brandj ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4806 ___ ___ Python-bugs-list

[issue12151] test_logging fails sometimes

2012-02-27 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: Not making excuses, but this one is rather hard to find, as it's pretty hard to reproduce. That's why I haven't made any progress :-( Yeah, not having a reproducible test case is quite a pain. (I suppose this should be reopened if the

[issue14131] test_threading failure on WIndows 7 3.x buildbot

2012-02-27 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr added the comment: Does Windows still have its once per day/week/whatever time synchronization, or does it use a proper NTP client? Because this offset is way too large for a broken RTC lock, so it might simply be some process adjusting the clock behind

[issue13405] Add DTrace probes

2012-02-27 Thread Marc Abramowitz
Marc Abramowitz msabr...@gmail.com added the comment: I get a build error on FreeBSD 9.0: make: don't know how to make ./Include/phelper_offsets.h. Stop Any ideas? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13405

[issue13405] Add DTrace probes

2012-02-27 Thread Marc Abramowitz
Marc Abramowitz msabr...@gmail.com added the comment: Re my comment in #154513, the following seems to fix that problem on FreeBSD 9.0: [marca@freebsd9-0 ~/src/cpython-2011]$ hg diff Makefile.pre.in diff -r 70dc1e48bd7f Makefile.pre.in --- a/Makefile.pre.in Mon Feb 27 22:43:17 2012 +0100

[issue13405] Add DTrace probes

2012-02-27 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Marc, check your email. I am online in Jabber/XMPP. My JID is j...@jabber.org. Can you send me a chat message there?. Google demands that you start the communication, possibly to avoid IM spam. -- ___

[issue14144] urllib2 HTTPRedirectHandler not handling POST data in redirect

2012-02-27 Thread Jay Deiman
New submission from Jay Deiman ad...@splitstreams.com: I've noticed that urllib2's HTTPRedirectHandler does not redirect a POST request with the POST data. If you send a POST request to a server with data, the data is dropped when the new Request is made to the new url. As stated in a

[issue14144] urllib2 HTTPRedirectHandler not handling POST data in redirect

2012-02-27 Thread Senthil Kumaran
Senthil Kumaran sent...@uthcode.com added the comment: If I recollect correctly, redirecting a POST request with POST data is not a recommended thing to do and could be a security hazard. That's why RFC prohibits it too. It is intentional that urllib2 is not redirecting carrying along the

[issue14119] Ability to adjust queue size in Executors

2012-02-27 Thread Nam Nguyen
Changes by Nam Nguyen bits...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file24666/executor-queue-size.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14119 ___

[issue14144] urllib2 HTTPRedirectHandler not handling POST data in redirect

2012-02-27 Thread Jay Deiman
Jay Deiman ad...@splitstreams.com added the comment: Senthil, That is a good point about the potential for security issues. What if it was an explicit option in HTTPRedirectHandler since there is a possibility of value in being able to do it. I know my case is probably unusual, but I

[issue14138] Ctrl-C does not terminate GTK3 Gtk.main() loop when program run from command line

2012-02-27 Thread Narnie Harshoe
Narnie Harshoe signupnar...@gmail.com added the comment: Understood. I didn't realize it was 3rd party. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14138 ___

[issue14137] GTK3 Segmentation fault from Warning: g_object_notify: assertion `G_IS_OBJECT (object)' failed

2012-02-27 Thread Narnie Harshoe
Narnie Harshoe signupnar...@gmail.com added the comment: Understood. Didn't realize pythonized GTK was 3rd party. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14137 ___

[issue14137] GTK3 Segmentation fault from Warning: g_object_notify: assertion `G_IS_OBJECT (object)' failed

2012-02-27 Thread Narnie Harshoe
Narnie Harshoe signupnar...@gmail.com added the comment: PyGtk and the python bindings for GTK3 seem to be separate entities. I could find nothing about GTK3 on pygtk.org. Any ideas where the bug reporting goes for the python bindings for GTK3? --

[issue14133] improved PEP 409 implementation

2012-02-27 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- resolution: rejected - status: closed - open Added file: http://bugs.python.org/file24667/pep415.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14133

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- nosy: +eric.snow ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8706 ___ ___ Python-bugs-list

[issue8706] accept keyword arguments on all base type methods and builtins

2012-02-27 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: For many builtins, this would be a total waste, slowing down the calls, and supplying keyword names that would be meaningless or just weird. For example, chr(i=65) is just a waste. Keyword args should only be added where they

  1   2   >