[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2012-06-26 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2012-06-26 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue15187] test_shutil does not clean up after itself

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6b1d4e3ce867 by Larry Hastings in branch 'default': Fix issue # in Misc/NEWS (should be #15187, not 15817.) http://hg.python.org/cpython/rev/6b1d4e3ce867 -- nosy: +python-dev ___ Python tracker

[issue15187] test_shutil does not clean up after itself

2012-06-26 Thread Larry Hastings
Larry Hastings added the comment: (No wonder it had an aneurysm!) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue15189] tkinter.messagebox does not use the application's icon

2012-06-26 Thread Mark Summerfield
New submission from Mark Summerfield : The tkinter.messagebox functions, e.g., askyesno(), do not use the application's icon (if it has one). Nor do they accept a bitmapicon option, so ISTM that it is "impossible" to set one. The same is true of tkinter.dialog, but for that it is easy enough t

[issue4489] shutil.rmtree is vulnerable to a symlink attack

2012-06-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue12170] index() and count() methods of bytes and bytearray should accept byte ints

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 018fe1dee9b3 by Petri Lehtinen in branch 'default': What's new: Add myself as the contributor of issue 12170 http://hg.python.org/cpython/rev/018fe1dee9b3 -- ___ Python tracker

[issue15190] Allow whitespace and comments after line line continuation character \

2012-06-26 Thread Ztatik Light
New submission from Ztatik Light : See Title -- components: Interpreter Core messages: 164055 nosy: Ztatik.Light priority: normal severity: normal status: open title: Allow whitespace and comments after line line continuation character \ type: enhancement versions: 3rd party ___

[issue15190] Allow whitespace and comments after line continuation character \

2012-06-26 Thread Ztatik Light
Changes by Ztatik Light : -- title: Allow whitespace and comments after line line continuation character \ -> Allow whitespace and comments after line continuation character \ ___ Python tracker __

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2012-06-26 Thread Petri Lehtinen
Petri Lehtinen added the comment: Attached a patch. It copies the mode of the original mailbox file to the new file on flush(). -- components: +email keywords: +patch nosy: +barry, r.david.murray stage: test needed -> patch review versions: +Python 3.3 -Python 3.1 Added file: http://bu

[issue15191] tkinter convenience dialogs don't use themed widgets

2012-06-26 Thread Mark Summerfield
New submission from Mark Summerfield : Some of the tkinter convenience dialogs, e.g., tkinter.filedialog.FileDialog, tkinter.scrolledtext.ScrolledText, tkinter.simpledialog.SimpleDialog, tkinter.simpledialog.Dialog, and tkinter.simpledialog._QueryDialog. Ideally they should use ttk.Frame, ttk.

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2012-06-26 Thread Christian Heimes
Christian Heimes added the comment: I just found mksalt in the whatsnew section and got curious how you've implemented the function. IMHO it has one major security flaw. The function uses random.choice(). The choice() function generates random values with a Mersenne Twister. However MTs are n

[issue15190] Allow whitespace and comments after line continuation character \

2012-06-26 Thread Mark Dickinson
Mark Dickinson added the comment: I think a change at this level should be discussed on the python-ideas mailing list: http://mail.python.org/mailman/listinfo/python-ideas . Ztatik, please can you post there? It would help to include some motivation for the change in your posting; if you h

[issue15190] Allow whitespace and comments after line continuation character \

2012-06-26 Thread Eric V. Smith
Eric V. Smith added the comment: This would be a big change. Please bring it up on the python-ideas mailing list for discussion first. If it is approved there, we can re-open this issue. You'll need to present your use-case: Why this would be an improvement to Python? What would it allow you

[issue9559] mailbox.mbox creates new file when adding message to mbox

2012-06-26 Thread Petri Lehtinen
Petri Lehtinen added the comment: Attached a patch that doesn't rewrite+rename if messages have only been added. In this case, flush() only syncs the mailbox file to make sure all changes have been written to disk. David & Barry: what do you think about including this on bugfix releases? Coul

[issue12927] test_ctypes: segfault with suncc

2012-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine, is it possible to add --with-system-ffi to the build rules > of the Solaris/suncc bot? This will prevent the segfaults. Ok, done. -- ___ Python tracker ___

[issue14979] pdb doc: Add link to source

2012-06-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: Adding link to pdb source may be not be suitable. Readers may require to understand the states which pdb goes through. Docs here are better, IMO. -1 vote from me. -- nosy: +orsenthil ___ Python tracker

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2012-06-26 Thread Devin Jeanpierre
Devin Jeanpierre added the comment: For extra clarification, this issue can crop up with even a single press of ctrl-c. It's not really related to multiple presses, except that pressing it more increases the odds of it happening. -- nosy: +Devin Jeanpierre ___

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2012-06-26 Thread Christian Heimes
Christian Heimes added the comment: Could add a printf() to PC/launcher.c:ctrl_c_handler() to test if the handler is called in the error case? -- ___ Python tracker ___

[issue14979] pdb doc: Explain how to extend debugger instead of sending readers to the source

2012-06-26 Thread anatoly techtonik
anatoly techtonik added the comment: I agree that reading the source doesn't make it clear how to extend or use PDB, so I've changed the title. High level overview is required. I think an example would really help there. For instance a simple execution scroller - analogue of `python -m trace

[issue13666] datetime documentation typos

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset ec970793f390 by Senthil Kumaran in branch '3.2': issue13666 - Fixing datetime documentation example when using tzinfo http://hg.python.org/cpython/rev/ec970793f390 New changeset 98d40bd23381 by Senthil Kumaran in branch 'default': issue13666 - merg

[issue13666] datetime documentation typos

2012-06-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: The docs are fixed now. -- nosy: +orsenthil resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker _

[issue5441] Convenience API for timeit.main

2012-06-26 Thread Nick Coghlan
Nick Coghlan added the comment: Close in favour of #6422 - that one at least has a patch :) -- resolution: -> duplicate superseder: -> timeit called from within Python should allow autoranging ___ Python tracker

[issue6422] timeit called from within Python should allow autoranging

2012-06-26 Thread Nick Coghlan
Nick Coghlan added the comment: In #5442, I proposed leaving the architecture of the module alone, and simply exposing the main module functionality as a high level helper function: def measure(stmt="pass", setup="pass", timer=default_timer, repeat=default_repeat, number=default_nu

[issue6422] timeit called from within Python should allow autoranging

2012-06-26 Thread Nick Coghlan
Nick Coghlan added the comment: Oops, that link reference should have been to #5441. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue6422] timeit called from within Python should allow autoranging

2012-06-26 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: accepted -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5441] Convenience API for timeit.main

2012-06-26 Thread Nick Coghlan
Changes by Nick Coghlan : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2012-06-26 Thread Mark Hammond
Changes by Mark Hammond : -- nosy: +mhammond ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Antoine Pitrou
New submission from Antoine Pitrou : test_bufio fails sporadically on the AMD64 Windows7 SP1 buildbot, e.g.: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/161/steps/test/logs/stdio test_nullpat (test.test_bufio.CBufferSizeTest) ... ok test_primepat (test.test_bufio

[issue15193] Exception AttributeError: "'NoneType' object has no attribute

2012-06-26 Thread Mithilesh Kumar
New submission from Mithilesh Kumar : Behavior of the program changes with number of charaters used in variable name. Attached file shows a simple example. -- files: objectvar.py messages: 164073 nosy: prime priority: normal severity: normal status: open title: Exception AttributeError:

[issue15193] Exception AttributeError: "'NoneType' object has no attribute

2012-06-26 Thread Mark Dickinson
Mark Dickinson added the comment: The exception you report looks incomplete: there should be something after the 'no attribute' saying which attribute lookup failed. In any case, I don't thing this is a bug. It sounds like a result of the unpredictability of cleanup order at interpreter shu

[issue15193] Exception AttributeError: "'NoneType' object has no attribute

2012-06-26 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: See also this warning message: http://docs.python.org/reference/datamodel.html#object.__del__ -- nosy: +amaury.forgeotdarc ___ Python tracker __

[issue15034] Devguide should document best practices for stdlib exceptions

2012-06-26 Thread R. David Murray
R. David Murray added the comment: OK, let's move this, then. I asked the question because I'd like to know what the best practice is for exceptions in the stdlib. This is an area in which we have made quite a bit of progress recently (ie: the work done on exceptions for Python3, and PEP 31

[issue12713] argparse: allow abbreviation of sub commands by users

2012-06-26 Thread Vinay Sajip
Vinay Sajip added the comment: You could consider just a small refinement: in the first loop in _SubParsersAction.__call__ where you look for the abbreviation, you can just set parser_name = p and break. Then the logic just below that can stay as it is: all you've done is morphed the abbrevia

[issue15178] Doctest should handle situations when test files are not readable

2012-06-26 Thread R. David Murray
R. David Murray added the comment: Ah, right, I misread the code when I looked at it. There is usually a reason why something is done the way it is...though not always. But, running some example command lines, it looks to me like the current behavior is there because without it, you won't no

[issue15184] Test failure in test_sysconfig_module

2012-06-26 Thread Éric Araujo
Éric Araujo added the comment: Moving stuff common to both sysconfig modules into a shared module sounds good, but the existence and API of distutils.sysconfig needs to be preserved. -- ___ Python tracker ___

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Matthias Klose
New submission from Matthias Klose : here is an update for libffi 3.0.11. For now, only tested on x86-linux and arm-linux-gnueabi. Proposing the check it in, and then test again, if the libffi_osx and libffi_msvc copies can be removed, if 3.0.11 works on these platforms (however I can't test

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +meador.inge, ned.deily, skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue15195] test_distutils fails when ARCHFLAGS is set on a Mac

2012-06-26 Thread Marc Abramowitz
New submission from Marc Abramowitz : $ export ARCHFLAGS="-arch i386 -arch x86_64" $ ./python.exe -m test -v test_distutils [last: 0] marca@scml-marca:~/dev/hg-repos/cpython$ ./python.exe Python 3.3.0a4+ (default:6af0535b5e3a, Jun 25 2012, 16:59:49) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] o

[issue15195] test_distutils fails when ARCHFLAGS is set on a Mac

2012-06-26 Thread Marc Abramowitz
Changes by Marc Abramowitz : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 25421e1c48bb by doko in branch 'default': - Issue #15194: Update libffi to the 3.0.11 release. http://hg.python.org/cpython/rev/25421e1c48bb -- nosy: +python-dev ___ Python tracker

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Stefan Krah
Stefan Krah added the comment: Looks similar to the sporadic test_reprlib failure. Roumen has explained that here: http://bugs.python.org/issue14599#msg162727 I didn't test myself though, just a guess. -- ___ Python tracker

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Looks similar to the sporadic test_reprlib failure. Roumen has explained > that here: I don't think there's anything similar. The path is much smaller in test_bufio. -- ___ Python tracker

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +jeremy.kloth ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Ronald Oussoren
Ronald Oussoren added the comment: Removing libffi_osx would be fairly hard due to the creation of fat binaries, the libffi_osx tree supports building all files using 'cc -arch i386 -arch ppc -arch x86_64', the regular libffi sources require a more complex dance (basically build all architect

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Jeremy Kloth
Jeremy Kloth added the comment: I've changed the malware scanner to disable real-time protection and have disabled scanning of the buildbot directories. Note that I could reproduce intermittent failures when using '-j' of regrtest, but with these changes they no longer appear. --

[issue9559] mailbox.mbox creates new file when adding message to mbox

2012-06-26 Thread R. David Murray
R. David Murray added the comment: Could someone be depending on it? Sure. Is that likely enough to block this as a bug fix? Personally I think not. Appending to the mailbox when adding messages is, I think, the expected behavior, and always rewriting it is the surprising behavior. The p

[issue14443] Distutils test_bdist_rpm failure

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 76f2b99f3568 by David Malcolm in branch '3.2': Issue #14443: ensure that brp-python-bytecompile is invoked with the correct http://hg.python.org/cpython/rev/76f2b99f3568 -- ___ Python tracker

[issue11681] -b option undocumented

2012-06-26 Thread moijes12
moijes12 added the comment: Hi Marc I tried reproducing this for bytearray using Python 2.7.2 but I can't see a warning. devel@moses:~$ python --version Python 2.7.2+ devel@moses:~$ cat test_py.py k = range(10) kb = bytearray(k) print kb kb = bytearray("hi") print kb devel@moses:~$ python -b

[issue15196] os.path.realpath gets confused when symlinks include '..'

2012-06-26 Thread Ben Longbons
New submission from Ben Longbons : I encountered this bug with the following filesystem layout project/build/bin/main-gdb.py -> ../src/main-gdb.py project/build/src -> ../src/ project/src/main-gdb.py -> ../py/main-gdb.py project/py/main-gdb.py where root/py/main-gdb.py contains import os print(

[issue15194] libffi-3.0.11 update

2012-06-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14443] Distutils test_bdist_rpm failure

2012-06-26 Thread Dave Malcolm
Dave Malcolm added the comment: Fixes committed to 3.2 and default: RHEL 6.3 is now green for both branches. Closing this bug out. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue672115] Assignment to __bases__ of direct object subclasses

2012-06-26 Thread florian-rathgeber
Changes by florian-rathgeber : -- nosy: +florian-rathgeber ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue15196] os.path.realpath gets confused when symlinks include '..'

2012-06-26 Thread R. David Murray
R. David Murray added the comment: Is this a duplicate of issue 6975, or something different? 2.6 only gets security patches. (We use the version field to show what version we need to apply the fix to.) -- nosy: +r.david.murray versions: +Python 3.3 -Python 2.6 _

[issue15196] os.path.realpath gets confused when symlinks include '..'

2012-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Indeed, this is pretty bad behaviour, especially for realpath(). Both abspath() and normpath() should never be called before any symlinks are resolved. Of course, fixing it as a bug means it could break existing code which relies on ".." fragments being folde

[issue15166] Implement imp.get_tag() using sys.implementation

2012-06-26 Thread Jeff Knupp
Jeff Knupp added the comment: Adding patch. If I misunderstood the issue, let me know. -- keywords: +patch nosy: +Jeff.Knupp Added file: http://bugs.python.org/file26170/imp.patch ___ Python tracker __

[issue15192] test_bufio failures on Win64 buildbot

2012-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I've changed the malware scanner to disable real-time protection and > have disabled scanning of the buildbot directories. Thank you. I hope that, thanks to this change, we later can make the Win64 buildbot part of the bunch of stable buildbots. --

[issue14940] Usage documentation for pysetup

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Packaging is out, no more blocking. -- priority: deferred blocker -> normal versions: +Python 3.4 ___ Python tracker ___

[issue15037] curses.unget_wch and test_curses fail when linked with ncurses 5.7 and earlier

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: I agree it should be documented, probably wherever unget_wch is documented. If there is a way to detect the ncurses version, the test should be skipped on < 5.8 as well. -- priority: deferred blocker -> release blocker _

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- nosy: +georg.brandl priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue14340] Update embedded copy of expat - fix security & crash issues

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue15056] Have imp.cache_from_source() raise NotImplementedError when cache tag not available

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- nosy: +georg.brandl priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue14578] importlib doesn't check Windows registry for paths

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue13959] Re-implement parts of imp in pure Python

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving back to blocker for beta2. -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___

[issue15184] Test failure in test_sysconfig_module

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving to blocker for beta2. -- priority: deferred blocker -> release blocker ___ Python tracker ___

[issue15166] Implement imp.get_tag() using sys.implementation

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Moving to blocker for beta2. -- nosy: +georg.brandl priority: deferred blocker -> release blocker ___ Python tracker ___

[issue15011] Change Scripts to bin on Windows

2012-06-26 Thread Brian Curtin
Changes by Brian Curtin : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12559] gzip.open() needs an optional encoding argument

2012-06-26 Thread Nadeem Vawda
Nadeem Vawda added the comment: I already fixed this without knowing about this issue; see 55202ca694d7. storchaka: > Why not use io.TextWrapper? I think it is the right answer for this issue. The proposed patch (and the code I committed) *do* use TextIOWrapper. Unless you mean that callers

[issue15079] pickle: Possibly misplaced test

2012-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5881a58c5425 by Antoine Pitrou in branch '3.2': Issue #15079: make a test applicable to both C and Python versions of the pickle module. http://hg.python.org/cpython/rev/5881a58c5425 New changeset b66e82c9f852 by Antoine Pitrou in branch 'default'

[issue15079] pickle: Possibly misplaced test

2012-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed. Congratulations on your first patch! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker

[issue12605] Enhancements to gdb 7 debugging hooks

2012-06-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: Better debuggability FTW! This is an update to Tools/gdb/ as such I'd like to see this make it into 3.3. It doesn't touch the runtime or stdlib so I personally wouldn't consider this "adding a feature" and thus preventing its inclusion with 3.3 despite the

[issue15196] os.path.realpath gets confused when symlinks include '..'

2012-06-26 Thread Ben Longbons
Ben Longbons added the comment: Yeah, this is a duplicate of issue 6975. Sorry also about the version thing. Although I can set this as closed: duplicate, I don't seem to be able to set what bug this is a duplicate of. -- resolution: -> duplicate status: open -> closed type: -> beh

[issue6975] symlinks incorrectly resolved on Linux

2012-06-26 Thread Ben Longbons
Ben Longbons added the comment: After filing a duplicate, issue 15196, I analyzed this: What happens: test/one/that_dir test/one/../two/this_dir/this_dir/this_dir/this_dir test/two/this_dir/this_dir/this_dir/this_dir test/two/this_dir/this_dir/this_dir/../two test/two/this_dir/this_dir/two Wha

[issue15196] os.path.realpath gets confused when symlinks include '..'

2012-06-26 Thread R. David Murray
Changes by R. David Murray : -- superseder: -> symlinks incorrectly resolved on Linux ___ Python tracker ___ ___ Python-bugs-list mai

[issue6975] symlinks incorrectly resolved on Linux

2012-06-26 Thread R. David Murray
Changes by R. David Murray : -- nosy: +hynek, pitrou, r.david.murray versions: -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list

[issue15197] test_gettext failure on Win64 buildbot

2012-06-26 Thread Antoine Pitrou
New submission from Antoine Pitrou : Another weird failure that isn't common on other buildbots: test test_gettext failed -- Traceback (most recent call last): File "C:\Users\Buildbot\buildbot.python.org\3.2.kloth-win64\build\lib\test\test_gettext.py", line 80, in tearDown shutil.rmtree

[issue12605] Enhancements to gdb 7 debugging hooks

2012-06-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: I'm +1 on adding this in general, +0 on adding this to 3.3, and -0 on adding it to 2.7 right away. I agree that the usual reasoning against new features doesn't apply here, since it's not a new Python (language or library) feature. However, one concern is t

[issue15197] test_gettext failure on Win64 buildbot

2012-06-26 Thread Jeremy Kloth
Jeremy Kloth added the comment: I've now also turned off indexing for the Buildbot account (and folders). Hopefully this is the last directory walking process interfering with the tests. -- ___ Python tracker ___

[issue15031] Split .pyc parsing from module loading

2012-06-26 Thread Marc Abramowitz
Marc Abramowitz added the comment: Another package that inspects pyc files and which also ran into trouble because of the 8 to 12 byte change is distribute. See: https://bitbucket.org/tarek/distribute/issue/283/bdist_egg-issues-with-python-330ax Some kind of abstraction for loading pyc files

[issue12971] os.isdir() should contain skiplinks=False in arguments

2012-06-26 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue12971] os.isdir() should contain skiplinks=False in arguments

2012-06-26 Thread Larry Hastings
Larry Hastings added the comment: If this happens, in keeping with the new os module aesthetic, I suggest the prototype should be os.isdir(path, *, follow_symlinks=True) -- nosy: +larry ___ Python tracker __

[issue13685] argparse update help msg for % signs

2012-06-26 Thread Éric Araujo
Éric Araujo added the comment: Senthil, would you mind porting the fix to 2.7? Thanks. -- nosy: +eric.araujo ___ Python tracker ___

[issue15195] test_distutils fails when ARCHFLAGS is set on a Mac

2012-06-26 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue15198] multiprocessing Pipe send of non-picklable objects doesn't raise error

2012-06-26 Thread Ian Bell
New submission from Ian Bell : When a non-picklable object is sent through a multiprocessing.Pipe, no exception is raised, instead when trying to read the other end of the pipe, a TypeError is raised: TypeError: Required argument 'handle' (pos 1) not found -- components: Windows messa

[issue15198] multiprocessing Pipe send of non-picklable objects doesn't raise error

2012-06-26 Thread Ian Bell
Changes by Ian Bell : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue3786] _curses, _curses_panel & _multiprocessing can't be build in 2.6b3 w/ SunStudio 12

2012-06-26 Thread Justin Venus
Justin Venus added the comment: The attached patch allows _curses and _curses_panel to build with the sunpro compiler on Solaris11. The only changes were compiler/linker options in the main setup.py. The interactive curses_test works on my system. I can easily make patches for python2.7 an

[issue15178] Doctest should handle situations when test files are not readable

2012-06-26 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: Ok, attaching 4th version :) I think it is nice when the testing library can react in situations like this one and not show a traceback. IMHO it is always nicer to display a pretty user-readable message than ending with a traceback. -- Adde

[issue15030] PyPycLoader can't read cached .pyc files

2012-06-26 Thread Marc Abramowitz
Marc Abramowitz added the comment: Attaching a patch... Using Ronan's test_PyPyc.diff, before my patch: {{{ ~/dev/hg-repos/cpython$ ./python.exe -m unittest Lib/importlib/test/source/test_abc_loader.py ...E.. ===

[issue15030] PyPycLoader can't read cached .pyc files

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Patch looks innocent enough; would be nice to fix this for 3.3. -- nosy: +georg.brandl priority: normal -> release blocker ___ Python tracker ___

[issue15030] PyPycLoader can't read cached .pyc files

2012-06-26 Thread Marc Abramowitz
Marc Abramowitz added the comment: Similar issue in distribute: https://bitbucket.org/tarek/distribute/issue/283/bdist_egg-issues-with-python-330ax -- ___ Python tracker ___ __

[issue12605] Enhancements to gdb 7 debugging hooks

2012-06-26 Thread Georg Brandl
Georg Brandl added the comment: Agreed with Martin, can't say I'm +1 on 3.3 either. But I've just reviewed the patch, and it looks correct to me, so go ahead and I'll take the blame. -- ___ Python tracker __