Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Eric V. Smith
On 6/25/2013 9:33 PM, Senthil Kumaran wrote: > > > > On Tue, Jun 25, 2013 at 5:58 PM, Benjamin Peterson > wrote: > > 2013/6/25 Victor Stinner >: > > And then I ran "make distclean"... > > You've left us hanging... >

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Mark Janssen
> One month ago, unit tests were added to IDLE (cool!) with a file > called @README.txt. The @ was used to see the name on top in a listing > of the directory. It's like this. Whenever you use special characters in a file name, you're asking for trouble. The shell and the OS have negotiate how t

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Mark Janssen
> It's like this. Whenever you use special characters in a file name, > you're asking for trouble. The shell and the OS have negotiate how to > interpret it. It bigger than git, and not a bug. Sorry, I meant mercurial, not git. -- MarkJ Tacoma, Washington __

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Steven D'Aprano
On 26/06/13 08:44, Victor Stinner wrote: And then I ran "make distclean"... Victor, you're a cruel, cruel man. You've told us everything except the solution to the mystery. -- Steven ___ Python-Dev mailing list Python-Dev@python.org http://mail.p

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Senthil Kumaran
On Tue, Jun 25, 2013 at 5:58 PM, Benjamin Peterson wrote: > 2013/6/25 Victor Stinner : > > And then I ran "make distclean"... > > You've left us hanging... > > Yeah, the final part is here: http://bz.selenic.com/show_bug.cgi?id=3954#c4 But still I have question as why hg complained about @README i

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Benjamin Peterson
2013/6/25 Victor Stinner : > And then I ran "make distclean"... You've left us hanging... -- Regards, Benjamin ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mai

[Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Victor Stinner
Hi, One month ago, unit tests were added to IDLE (cool!) with a file called @README.txt. The @ was used to see the name on top in a listing of the directory. Some developers began to get strange Mercurial errors like: "abort: data/Lib/idlelib/idle_test/@README.txt.i at 7573717b9e6f: no match" " 8

Re: [Python-Dev] Relative path in co_filename for zipped modules

2013-06-25 Thread R. David Murray
Please file this as a bug report on bugs.python.org so that it doesn't get lost. See also http://bugs.python.org/issue13328 (which looks like a different bug but could also be causing you problems). --David On Wed, 26 Jun 2013 00:11:04 +0400, Vitaly Murashev wrote: > Dear Python developers com

[Python-Dev] Relative path in co_filename for zipped modules

2013-06-25 Thread Vitaly Murashev
Dear Python developers community, Recently I found out that it not possible to debug python code if it is a part of zip-module. Python version being used is 3.3.0 Well known GUI debuggers like Eclipse+PyDev or PyCharm are unable to start debugging and give the following warning: --- pydev debugge

Re: [Python-Dev] cpython (2.7): Fix comment blocks. Adjust blocksize to a power-of-two for better divmod

2013-06-25 Thread Benjamin Peterson
2013/6/25 Raymond Hettinger : > > On Jun 24, 2013, at 10:12 PM, Benjamin Peterson wrote: > > Raymond, go ahead and reapply your change. > > > If you don't mind, I think you should be the one to undo your own > reversions. Done. -- Regards, Benjamin __

Re: [Python-Dev] [Python-checkins] cpython (3.3): Add -b and -X options to python man page.

2013-06-25 Thread Jeff Hardy
On Sun, Jun 23, 2013 at 8:40 AM, Maciej Fijalkowski wrote: > >> +.BI "\-X " option > >> +Set implementation specific option. > > > > > > Should probably be "Set the implementation-specific option." > > Is there anyone respecting this notation? (I know pypy does not, it > uses --jit and stuff) > >

Re: [Python-Dev] cpython (2.7): Fix comment blocks. Adjust blocksize to a power-of-two for better divmod

2013-06-25 Thread Raymond Hettinger
On Jun 24, 2013, at 10:12 PM, Benjamin Peterson wrote: > Raymond, go ahead and reapply your change. If you don't mind, I think you should be the one to undo your own reversions. Thank you, Raymond ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] [Python-checkins] cpython: Issue #18081: Workaround "./python -m test_idle test_logging" failure

2013-06-25 Thread Brett Cannon
This fix is still not correct as warnings.formatwarning should not be overridden, only showwarning can be. On Jun 24, 2013 6:18 PM, "victor.stinner" wrote: > http://hg.python.org/cpython/rev/2a9e1eb3719c > changeset: 84330:2a9e1eb3719c > user:Victor Stinner > date:Tue Jun 25 00

Re: [Python-Dev] [Python-checkins] cpython (3.3): Add -b and -X options to python man page.

2013-06-25 Thread Maciej Fijalkowski
On Mon, Jun 24, 2013 at 10:56 PM, Antoine Pitrou wrote: > On Mon, 24 Jun 2013 16:43:15 -0400 > "R. David Murray" wrote: >> On Mon, 24 Jun 2013 22:14:46 +0200, Maciej Fijalkowski >> wrote: >> > On Sun, Jun 23, 2013 at 6:14 PM, R. David Murray >> > wrote: >> > > On Sun, 23 Jun 2013 17:40:13 +02