Re: [Python-Dev] Raspberry Pi Buildbot

2014-06-13 Thread Gregory P. Smith
On Fri, Jun 13, 2014 at 3:24 AM, Tal Einat wrote: > Is there one? If not, would you like me to set one up? I've got one at > home with Raspbian installed not doing anything, it could easily run a > buildslave. > > Poking around on buildbot.python.org/all/builders, I can only see one > ARM buildbo

Re: [Python-Dev] Why does IOBase.__del__ call .close?

2014-06-13 Thread Benjamin Peterson
On Fri, Jun 13, 2014, at 20:04, Nikolaus Rath wrote: > Benjamin Peterson writes: > > On Thu, Jun 12, 2014, at 18:06, Nikolaus Rath wrote: > >> Consider this simple example: > >> > >> $ cat test.py > >> import io > >> import warnings > >> > >> class StridedStream(io.IOBase): > >> def __init_

Re: [Python-Dev] Why does IOBase.__del__ call .close?

2014-06-13 Thread Nikolaus Rath
Benjamin Peterson writes: > On Thu, Jun 12, 2014, at 18:06, Nikolaus Rath wrote: >> Consider this simple example: >> >> $ cat test.py >> import io >> import warnings >> >> class StridedStream(io.IOBase): >> def __init__(self, name, stride=2): >> super().__init__() >> self.fh

Re: [Python-Dev] Backwards Incompatibility in logging module in 3.4?

2014-06-13 Thread Nick Coghlan
On 14 Jun 2014 06:18, "Don Spaulding" wrote: > > I opened up an issue on the tracker for this: http://bugs.python.org/issue21752 > > I apologize if that was out of turn. At the very least, there should be a note in the "porting to Python 3.4" section of the What's New and a versionchanged note on

Re: [Python-Dev] python-dev for MAC OS X

2014-06-13 Thread Ned Deily
In article , Tal Einat wrote: > On Fri, Jun 13, 2014 at 12:21 PM, Pedro Helou wrote: > > does anybody know how to install the python-dev headers and libraries for > > MAC OS X? > This list is for discussing the development *of* Python, not *with* > Python. Please ask on the python list, python-

Re: [Python-Dev] Backwards Incompatibility in logging module in 3.4?

2014-06-13 Thread Don Spaulding
On Thu, Jun 12, 2014 at 6:45 PM, Victor Stinner wrote: > Hi, > > 2014-06-13 0:38 GMT+02:00 Don Spaulding : > > Is this a bug or an intentional break? If it's the latter, shouldn't > this > > at least be mentioned in the "What's new in Python 3.4" document? > > IMO the change is intentional. The

Re: [Python-Dev] subprocess shell=True on Windows doesn't escape ^ character

2014-06-13 Thread Akira Li
Florian Bruhin writes: > * Nikolaus Rath [2014-06-12 19:11:07 -0700]: >> "R. David Murray" writes: >> > Also notice that using a list with shell=True is using the API >> > incorrectly. It wouldn't even work on Linux, so that torpedoes >> > the cross-platform concern already :) >> > >> > This k

[Python-Dev] Summary of Python tracker Issues

2014-06-13 Thread Python tracker
ACTIVITY SUMMARY (2014-06-06 - 2014-06-13) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open4662 (+12) closed 28859 (+57) total 33521 (+69) Open issues wit

Re: [Python-Dev] [Idle-dev] KeyConfig, KeyBinding and other related issues.

2014-06-13 Thread Saimadhav Heblikar
Apologies for the accidental cross post. I intended to send it to idle-dev. I am sorry again :( On 13 June 2014 20:11, Saimadhav Heblikar wrote: > Hi, > > I would like the keyseq validator to be reviewed. > > The diff file: > https://gist.github.com/sahutd/0a471db8138383fd73b2#file-test-keyseq-d

Re: [Python-Dev] python-dev for MAC OS X

2014-06-13 Thread Tal Einat
On Fri, Jun 13, 2014 at 12:21 PM, Pedro Helou wrote: > Hey, > > does anybody know how to install the python-dev headers and libraries for > MAC OS X? Hi, This list is for discussing the development *of* Python, not *with* Python. Please ask on the python list, python-l...@python.org (more info h

[Python-Dev] python-dev for MAC OS X

2014-06-13 Thread Pedro Helou
Hey, does anybody know how to install the python-dev headers and libraries for MAC OS X? -- Pedro Issa Helou Network Communication Engineering + 36 20 262 9274 ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinf

Re: [Python-Dev] [Idle-dev] KeyConfig, KeyBinding and other related issues.

2014-06-13 Thread Saimadhav Heblikar
Hi, I would like the keyseq validator to be reviewed. The diff file: https://gist.github.com/sahutd/0a471db8138383fd73b2#file-test-keyseq-diff A sample test runner file: https://gist.github.com/sahutd/0a471db8138383fd73b2#file-test-keyseq-runner-py In its current form, it supports/has modif

Re: [Python-Dev] Moving Python 3.5 on Windows to a new compiler

2014-06-13 Thread Larry Hastings
On 06/10/2014 03:05 PM, "Martin v. Löwis" wrote: We certainly don't need to resolve this now. We should discuss it again when the release schedule for 3.5 is proposed. I anticipate 3.5 should be released about 18 months after the release of 3.4, putting it mid-September 2015. //arry/ __

Re: [Python-Dev] subprocess shell=True on Windows doesn't escape ^ character

2014-06-13 Thread R. David Murray
On Fri, 13 Jun 2014 16:57:49 +1200, Greg Ewing wrote: > Nikolaus Rath wrote: > > you almost certainly want to do > > > > Popen(['/bin/sh', 'for i in `seq 42`; do echo $i; done'], shell=False) > > > > because if your shell happens to be tcsh or cmd.exe, things are going to > > break. > > On Uni

[Python-Dev] Raspberry Pi Buildbot

2014-06-13 Thread Tal Einat
Is there one? If not, would you like me to set one up? I've got one at home with Raspbian installed not doing anything, it could easily run a buildslave. Poking around on buildbot.python.org/all/builders, I can only see one ARM buildbot[1], and it's just called "ARM v7". I also found this python-

Re: [Python-Dev] subprocess shell=True on Windows doesn't escape ^ character

2014-06-13 Thread Tim Golden
On 13/06/2014 03:11, Nikolaus Rath wrote: > "R. David Murray" writes: >> Also notice that using a list with shell=True is using the API >> incorrectly. It wouldn't even work on Linux, so that torpedoes >> the cross-platform concern already :) >> >> This kind of confusion is why I opened http://bu