[issue15311] Developer Guide doesn't get updated once a day

2012-07-09 Thread Ned Deily
Ned Deily added the comment: The web update hook is broken at the moment: http://article.gmane.org/gmane.comp.python.devel/134057 -- nosy: +ned.deily versions: -Python 3.3 ___ Python tracker

[issue15315] Can't build Python extension with mingw32 on Windows

2012-07-09 Thread Craig McQueen
New submission from Craig McQueen : I'm trying this with my 'cobs' Python package: c:\Python33\python.exe setup.py build --compiler=mingw32 bdist_msi With Python 3.3 beta, it fails with an exception: ValueError: Unknown MS Compiler version 1600 It works with Python 3.2. -- co

[issue15315] Can't build Python extension with mingw32 on Windows

2012-07-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset eee92b9ac4ad by Martin v. Löwis in branch 'default': Issue #15315: Support VS 2010 in distutils cygwincompiler. http://hg.python.org/cpython/rev/eee92b9ac4ad -- nosy: +python-dev ___ Python tracker

[issue15315] Can't build Python extension with mingw32 on Windows

2012-07-09 Thread Martin v . Löwis
Martin v. Löwis added the comment: This should now be fixed in the repository. It would be good if you could manually apply the change to your installation, and report whether it works. -- nosy: +loewis ___ Python tracker

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Line 1245 is part of this code (in time, these line numbers will change.) try: self.text.mark_gravity("iomark", "right") OutputWindow.write(self, s, tags, "iomark") self.text.mark_gravity("iomark", "left") except

[issue15313] IDLE - remove all bare excepts

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: Also, issue13582 will become relevant on Windows since modifying the bare excepts may let uncaught exceptions be written to stderr, causing IDLE to crash. -- ___ Python tracker

[issue15242] PyImport_GetMagicTag() should use the same const char * as sys.implementation.cache_tag

2012-07-09 Thread Eric Snow
Changes by Eric Snow : -- stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2012-07-09 Thread Eric Snow
Eric Snow added the comment: Your plan sounds good, Nick. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue13657] IDLE doesn't support sys.ps1 and sys.ps2.

2012-07-09 Thread Roger Serwy
Roger Serwy added the comment: For reference, IDLE-DEV is discussing the prompt: http://mail.python.org/pipermail/idle-dev/2012-June/003129.html -- ___ Python tracker ___ _

[issue15316] runpy swallows ImportError information with relative imports

2012-07-09 Thread Chris Jerdonek
New submission from Chris Jerdonek : With the following package directory structure-- foo/ __init__.py __main__.py from foo import bar bar.py print('***') raise ImportError('test...') Running-- $ ./python.exe -m foo Yields-- *** Traceback (most recent call

[issue15302] Use argparse instead of getopt in test.regrtest

2012-07-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: On Mon, Jul 9, 2012 at 8:50 PM, Chris Jerdonek wrote:> > Sure, if someone is open to reviewing it. Yes, please go ahead. I can review it and I believe others should be able to as well. As a first short, I think, it may be a good idea to just replacing the sh

[issue13532] In IDLE, sys.stdout and sys.stderr can write any pickleable object

2012-07-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > +sys.stdin = self.console = _RPCFile(self.get_remote_proxy("stdin")) write to sys.stdin? -- ___ Python tracker ___ ___

[issue15302] Use argparse instead of getopt in test.regrtest

2012-07-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks, Senthil. That is my plan. I should be able to have code with tests in no later than a week. -- ___ Python tracker ___ __

<    1   2