- 28 Dec, 2010 26 commits
-
-
R. David Murray authored
There is a small chance of backward incompatibility here, but only for non-SimpleCookie applications reading SimpleCookie generated cookies. Even then, any such ap is likely to be handling escaped values already, and it would take a fairly perverse implementation of unescaping to fail to unescape these newly escaped chars, so the risk seems minimal.
-
Georg Brandl authored
-
Brian Curtin authored
on Windows, and is no longer needed by any tests or Lib/test/support.py
-
Brian Curtin authored
existing and mentioned the OSError possibility.
-
Senthil Kumaran authored
-
Brian Curtin authored
when the user doesn't hold the symbolic link privilege rather than hiding it.
-
Victor Stinner authored
-
Victor Stinner authored
* Replace "bytes" by "bytes object" in struct error messages * Document the API change in What's new in Python 3.2 * Fix test_wave * Remove also ugly implicit conversions in test_struct
-
Georg Brandl authored
-
Georg Brandl authored
#10739: document that on Windows, socket.makefile() does not make a file that has a true file descriptor usable where such a thing is expected.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Victor Stinner authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
#10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make altinstall; create symlinks for make install.
-
Georg Brandl authored
-
Georg Brandl authored
Remove confusing paragraph -- this is relevant only to advanced users anyway and does not belong into the tutorial.
-
Georg Brandl authored
-
Victor Stinner authored
Forbidden in C, stupid language!
-
Victor Stinner authored
Function removed by r83195.
-
Victor Stinner authored
PyErr_SetExcFromWindowsErrWithFilename() decode the filename from the filesystem encoding instead of UTF-8.
-
- 27 Dec, 2010 12 commits
-
-
Victor Stinner authored
encoding instead of UTF-8.
-
Victor Stinner authored
encoding instead of UTF-8.
-
R. David Murray authored
I've only tested regular runs and -j runs. If I've broken anything else I'm sure I'll hear about it sooner or later.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
R. David Murray authored
I'm assuming that the putative path from the malformed pth file is simply not found and therefore ignored.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
R. David Murray authored
-
- 26 Dec, 2010 2 commits
-
-
Vinay Sajip authored
-
R. David Murray authored
If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file.
-