Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Alexandre Vassalotti
On Tue, Nov 19, 2013 at 2:09 PM, Antoine Pitrou solip...@pitrou.net wrote: Well, I don't think it's a big deal to add a FRAME opcode if it doesn't change the current framing logic. I'd like to defer to Alexandre on this one, anyway. Looking at the different options available to us: 1A.

[Python-Dev] Accepting PEP 456 (Secure hash algorithm)

2013-11-20 Thread Nick Coghlan
Christian has indicated he now considers PEP 456, which adds an updated and configurable hash algorithm ready for pronouncement ( http://www.python.org/dev/peps/pep-0456/) I am happy the PEP and the associated implementation represent a desirable improvement to CPython, and approve of the

Re: [Python-Dev] Accepting PEP 456 (Secure hash algorithm)

2013-11-20 Thread Christian Heimes
Am 20.11.2013 11:07, schrieb Nick Coghlan: Christian has indicated he now considers PEP 456, which adds an updated and configurable hash algorithm ready for pronouncement (http://www.python.org/dev/peps/pep-0456/) I am happy the PEP and the associated implementation represent a desirable

Re: [Python-Dev] Accepting PEP 456 (Secure hash algorithm)

2013-11-20 Thread Victor Stinner
2013/11/20 Christian Heimes christ...@python.org: The PEP has landed in revision http://hg.python.org/cpython/rev/adb471b9cba1 . I don't expect any test failures as I have tested the PEP on a lot of platforms. The new code compiles and passes its tests on Linux, Windows, BSD, HUPX, Solaris

Re: [Python-Dev] Accepting PEP 456 (Secure hash algorithm)

2013-11-20 Thread Victor Stinner
2013/11/20 Victor Stinner victor.stin...@gmail.com: It looks like dict, set and frozenset representation (repr(...)) now depends on the platform (probably 32 bit vs 64 bit), even if PYTHONHASHSEED is set. I don't know if it's an issue or not. In Python 3.3, repr(set(abcd)) with

Re: [Python-Dev] Accepting PEP 456 (Secure hash algorithm)

2013-11-20 Thread Christian Heimes
Am 20.11.2013 12:41, schrieb Victor Stinner: 2013/11/20 Victor Stinner victor.stin...@gmail.com: It looks like dict, set and frozenset representation (repr(...)) now depends on the platform (probably 32 bit vs 64 bit), even if PYTHONHASHSEED is set. I don't know if it's an issue or not. In

Re: [Python-Dev] Which direction is UnTransform? / Unicode is different

2013-11-20 Thread Steven D'Aprano
On Tue, Nov 19, 2013 at 05:28:48PM -0800, Jim J. Jewett wrote: (Fri Nov 15 16:57:00 CET 2013) Stephen J. Turnbull wrote: Serhiy Storchaka wrote: If the transform() method will be added, I prefer to have only one transformation method and specify a direction by the

Re: [Python-Dev] Which direction is UnTransform? / Unicode is different

2013-11-20 Thread Chris Angelico
On Wed, Nov 20, 2013 at 11:03 PM, Steven D'Aprano st...@pearwood.info wrote: I *will* get confused over which direction is encoding and which is decoding. (Removing .decode() from the (unicode) str type in 3 does help a lot, if I have a Python 3 interpreter running to check against.) It took

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Garth Bushell
I've noticed in pathlib.py the following error on line 39 if sys.getwindowsversion()[:2] = (6, 0) and sys.version_info = (3, 2): it should be:- if sys.getwindowsversion()[2:] = (6, 0) and sys.version_info = (3, 2): I'm also quite uneasy on the case insensitive comparison on Windows as the File

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 12:25:20 + Garth Bushell ga...@garthy.com wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case sensitive. Current Windows file systems, like NTFS, are case-sensitive; that is a readme.txt and a Readme.txt can

Re: [Python-Dev] Which direction is UnTransform? / Unicode is different

2013-11-20 Thread Walter Dörwald
On 20.11.13 02:28, Jim J. Jewett wrote: [...] Instead of relying on introspection of .decodes_to and .encodes_to, it would be useful to have charsetcodecs and tranformcodecs as entirely different modules, with their own separate registries. I will even note that the existing help(codecs) seems

Re: [Python-Dev] Which direction is UnTransform? / Unicode is different

2013-11-20 Thread Nick Coghlan
On 20 November 2013 23:38, Walter Dörwald wal...@livinglogic.de wrote: On 20.11.13 02:28, Jim J. Jewett wrote: [...] Instead of relying on introspection of .decodes_to and .encodes_to, it would be useful to have charsetcodecs and tranformcodecs as entirely different modules, with their own

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Ethan Furman
On 11/20/2013 04:25 AM, Garth Bushell wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case sensitive. No, it's case-preserving. Current Windows file systems, like NTFS, are case-sensitive; that is a readme.txt and a Readme.txt can

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Guido van Rossum
On Wed, Nov 20, 2013 at 4:49 AM, Antoine Pitrou solip...@pitrou.net wrote: On Wed, 20 Nov 2013 12:25:20 + Garth Bushell ga...@garthy.com wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case sensitive. Current Windows file

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Martin v. Löwis
Am 20.11.13 06:18, schrieb Tim Peters: BTW, I'm not a web guy: in what way is HTTP chunked transfer mode viewed as being flawed? Everything I ever read about it seemed to think it was A Good Idea. It just didn't work for some time, see e.g. http://bugs.python.org/issue1486335

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Guido van Rossum
A problem with chunked IIRC is that the frame headers are variable-length (a CRLF followed by a hex number followed by some optional gunk followed by CRLF) so you have to drop back into one-byte-at-a-time to read it. (Well, I suppose you could read 5 bytes, which is the minimum: CR, LF, X, CR, LF,

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Eric V. Smith
On 11/20/2013 09:01 AM, Ethan Furman wrote: On 11/20/2013 04:25 AM, Garth Bushell wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case sensitive. No, it's case-preserving. Current Windows file systems, like NTFS, are case-sensitive;

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Guido van Rossum
On Wed, Nov 20, 2013 at 6:01 AM, Ethan Furman et...@stoneleaf.us wrote: On 11/20/2013 04:25 AM, Garth Bushell wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case sensitive. No, it's case-preserving. It's quite possible that you are

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Xavier Morel
On 2013-11-20, at 17:09 , Guido van Rossum gu...@python.org wrote: On Wed, Nov 20, 2013 at 6:01 AM, Ethan Furman et...@stoneleaf.us wrote: On 11/20/2013 04:25 AM, Garth Bushell wrote: I'm also quite uneasy on the case insensitive comparison on Windows as the File system NTFS is case

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Martin v. Löwis
Am 20.11.13 17:04, schrieb Eric V. Smith: I think the confusion comes from the difference between what NTFS can do and what the Win32 (or whatever it's now called) layer allows you to do. Rumor has it that the old Posix subsystem allowed NTFS to create 2 files in the same directory that

[Python-Dev] PEP 3156 (asyncio) formally accepted

2013-11-20 Thread Antoine Pitrou
Hello, I have decided to mark PEP 3156 accepted. This reflects the fact that the implementation is now in the stdlib tree, and its API has been pretty much validated during all previous discussions (mostly on the tulip mailing-list). I cannot stress enough that the main preoccupation right now

Re: [Python-Dev] PEP 3156 (asyncio) formally accepted

2013-11-20 Thread Guido van Rossum
Thanks Antoine! I will stop pretending to myself that I can finish the PEP this week and instead focus on getting the docs in the CPython repo bootstrapped. I would also like to thank the many contributors to the design and implementation. (I've tried to mention everyone in the PEP's

[Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Christian Tismer
Howdy friends, according to pep 404, there will never be an official Python 2.8. The migration path is from 2.7 to 3.x. I agree with this strategy in almost all consequences but this one: Many customers are forced to stick with Python 2.X because of other products, but they require a Python

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Joao S. O. Bueno
I'd say publishing a high profile installable code with a python 2.8 name would cause a lot of undesired confusion to start with. I usually lecture on Python to present the language to college students and I.T. workers - and explaining away the current versioning scheme (use either 2.7 or 3.3) is

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Giampaolo Rodola'
On Tue, Nov 19, 2013 at 10:04 PM, Antoine Pitrou solip...@pitrou.netwrote: Hello, Guido has told me that he was ready to approve PEP 428 (pathlib) in its latest amended form. Here is the last call for any comments or arguments against approval, before Guido marks the PEP accepted (or

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Guido van Rossum
On Tue, Nov 19, 2013 at 1:04 PM, Antoine Pitrou solip...@pitrou.net wrote: Guido has told me that he was ready to approve PEP 428 (pathlib) in its latest amended form. Here is the last call for any comments or arguments against approval, before Guido marks the PEP accepted (or changes his

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 13:42:42 -0800 Guido van Rossum gu...@python.org wrote: On Tue, Nov 19, 2013 at 1:04 PM, Antoine Pitrou solip...@pitrou.net wrote: Guido has told me that he was ready to approve PEP 428 (pathlib) in its latest amended form. Here is the last call for any comments or

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Christian Tismer
My question is not answered at all, sorry Joao! I did not ask a teacher for his opinion on Stackless, but the community about the validity of pep 404. I don't want a python 2.7 that does not install correctly, because people don't read instructions. And exactly that will happen if I submit a

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Paul Moore
On 20 November 2013 22:04, Christian Tismer tis...@stackless.com wrote: My question is not answered at all, sorry Joao! I did not ask a teacher for his opinion on Stackless, but the community about the validity of pep 404. I don't want a python 2.7 that does not install correctly, because

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 13:42:42 -0800 Guido van Rossum gu...@python.org wrote: On Tue, Nov 19, 2013 at 1:04 PM, Antoine Pitrou solip...@pitrou.net wrote: Guido has told me that he was ready to approve PEP 428 (pathlib) in its latest amended form. Here is the last call for any comments or

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Barry Warsaw
On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python 2.X version which can be compiled using Visual Studio 2010 or better. This is considered an improvement and not a bug fix, where I

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Tim Peters
[Tim] BTW, I'm not a web guy: in what way is HTTP chunked transfer mode viewed as being flawed? Everything I ever read about it seemed to think it was A Good Idea. [Martin] It just didn't work for some time, see e.g. http://bugs.python.org/issue1486335 http://bugs.python.org/issue1966

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Mark Lawrence
On 20/11/2013 22:01, Antoine Pitrou wrote: pathlib imports many modules at startup, so for scripts for which startup time is critical using os.path may still be the best option. Will there be or is there a note to this effect in the docs? -- Python is the second best programming language in

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Chris Barker
On Wed, Nov 20, 2013 at 12:52 PM, Christian Tismer tis...@stackless.comwrote: according to pep 404, there will never be an official Python 2.8. The migration path is from 2.7 to 3.x. I agree with this strategy in almost all consequences but this one: Many customers are forced to stick with

[Python-Dev] [issue19494] Problems with HTTPBasicAuthHandler

2013-11-20 Thread Matej Cepl
Hello, I am trying to work on fixing issue 19494 (HTTPBasicAuthHandler doesn't work with Github and other websites which require prior Authorization header in the first request). I have created this testing script calling GitHub v3 API using new “authentication handlers” (they are

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Christian Tismer
Hey Barry, On 20.11.13 23:30, Barry Warsaw wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python 2.X version which can be compiled using Visual Studio 2010 or better. This is

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Terry Reedy
On 11/20/2013 5:30 PM, Barry Warsaw wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python 2.X version which can be compiled using Visual Studio 2010 or better. This is considered an

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 17:30:44 -0500 Barry Warsaw ba...@python.org wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python 2.X version which can be compiled using Visual Studio 2010 or

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Christian Tismer
Yes Paul, On 20.11.13 23:15, Paul Moore wrote: On 20 November 2013 22:04, Christian Tismer tis...@stackless.com wrote: My question is not answered at all, sorry Joao! I did not ask a teacher for his opinion on Stackless, but the community about the validity of pep 404. I don't want a python

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Antoine Pitrou
Hello, I have made two last-minute changes to the PEP: - addition of the FRAME opcode, as discussed with Tim, and keeping a fixed 8-byte frame size - addition of the MEMOIZE opcode, courtesy of Alexandre, which replaces PUT opcodes in protocol 4 and helps shrink the size of pickles If

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Tim Peters
[Antoine] I have made two last-minute changes to the PEP: - addition of the FRAME opcode, as discussed with Tim, and keeping a fixed 8-byte frame size Cool! - addition of the MEMOIZE opcode, courtesy of Alexandre, which replaces PUT opcodes in protocol 4 and helps shrink the size of

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Chris Barker
On Wed, Nov 20, 2013 at 1:39 PM, Giampaolo Rodola' g.rod...@gmail.comwrote: Isn't this redundant? Path.cwd() PosixPath('/home/antoine/pathlib') Probably this is just personal taste but I'd prefer the more explicit: Path(os.getcwd()) PosixPath('/home/antoine/pathlib') I understand all

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 14:43:26 -0800 Chris Barker chris.bar...@noaa.gov wrote: By the way, for us dinosaurs is this going to exactly match the pathlib implementation that can be used with py2? pathlib up to 0.8 (on PyPI) has a different API - since there were so many changes done as part of

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Antoine Pitrou
On Wed, 20 Nov 2013 18:45:53 -0600 Tim Peters tim.pet...@gmail.com wrote: [Antoine] I have made two last-minute changes to the PEP: - addition of the FRAME opcode, as discussed with Tim, and keeping a fixed 8-byte frame size Cool! - addition of the MEMOIZE opcode, courtesy of

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Antoine Pitrou
On Thu, 21 Nov 2013 01:51:59 +0100 Antoine Pitrou solip...@pitrou.net wrote: On Wed, 20 Nov 2013 14:43:26 -0800 Chris Barker chris.bar...@noaa.gov wrote: By the way, for us dinosaurs is this going to exactly match the pathlib implementation that can be used with py2? pathlib up to 0.8

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Guido van Rossum
Yup. Agreed. Ship it! On Wed, Nov 20, 2013 at 4:54 PM, Antoine Pitrou solip...@pitrou.net wrote: On Wed, 20 Nov 2013 18:45:53 -0600 Tim Peters tim.pet...@gmail.com wrote: [Antoine] I have made two last-minute changes to the PEP: - addition of the FRAME opcode, as discussed with

Re: [Python-Dev] Accepting PEP 3154 for 3.4?

2013-11-20 Thread Tim Peters
[Alexandre Vassalotti] Looking at the different options available to us: 1A. Mandatory framing (+) Allows the internal buffering layer of the Unpickler to rely on the presence of framing to simplify its implementation. (-) Forces all implementations of pickle to include

Re: [Python-Dev] PEP 428 - pathlib - ready for approval

2013-11-20 Thread Chris Barker - NOAA Federal
On Nov 20, 2013, at 4:53 PM, Antoine Pitrou solip...@pitrou.net wrote: When pathlib-in-the-stdlib stabilizes, I plan to release a pathlib 1.0 on PyPI that will integrate the PEP's API. Great, thanks! Chris In the meantime, if you don't mind installing from VCS, you clone the Mercurial

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread MRAB
On 20/11/2013 23:36, Christian Tismer wrote: Hey Barry, On 20.11.13 23:30, Barry Warsaw wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python 2.X version which can be compiled using

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Brian Curtin
On Wed, Nov 20, 2013 at 5:36 PM, Christian Tismer tis...@stackless.com wrote: Hey Barry, On 20.11.13 23:30, Barry Warsaw wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a Python

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Nick Coghlan
On 21 Nov 2013 10:33, Antoine Pitrou solip...@pitrou.net wrote: On Wed, 20 Nov 2013 17:30:44 -0500 Barry Warsaw ba...@python.org wrote: On Nov 20, 2013, at 09:52 PM, Christian Tismer wrote: Many customers are forced to stick with Python 2.X because of other products, but they require a

Re: [Python-Dev] PEP 0404 and VS 2010

2013-11-20 Thread Nick Coghlan
Another alternative I'd prefer to an ABI version bump: backporting the C runtime independence aspects of the stable ABI to Python 2.7. There are only a relatively small number of APIs that lead to the requirement for consistent C runtimes, so allowing those to be excluded at compile time would