- 10 Oct, 2010 4 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Akira Kitada.
-
Senthil Kumaran authored
-
Raymond Hettinger authored
-
- 09 Oct, 2010 5 commits
-
-
Antoine Pitrou authored
-
Vinay Sajip authored
-
Victor Stinner authored
Windows
-
Victor Stinner authored
encodings
-
Benjamin Peterson authored
-
- 08 Oct, 2010 10 commits
-
-
Antoine Pitrou authored
custom certificate and private key files used by SSL-related certs.
-
R. David Murray authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
easier writing of unit tests and better error reporting.
-
Antoine Pitrou authored
-
R. David Murray authored
The work on this is not 100% complete, but everything is present to allow real-world testing of the code. The only remaining major todo item is to (hopefully!) enhance the handling of non-ASCII bytes in headers converted to unicode by RFC2047 encoding them rather than replacing them with '?'s.
-
Antoine Pitrou authored
verification for higher-level protocols.
-
Hirokazu Yamamoto authored
-
Hirokazu Yamamoto authored
-
Raymond Hettinger authored
-
- 07 Oct, 2010 12 commits
-
-
Victor Stinner authored
.. instead of raising a fatal error. Even if the current directory was deleted, use relative paths may still work (eg. run Python with "../python").
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
On Windows, Py_UNICODE is wchar_t, so we can avoid the expensive Py_UNICODE* => wchar_t* conversion.
-
Victor Stinner authored
* Don't define _Py_wstat() on Windows, Windows has its own _wstat() function with a different API (the stat buffer has another type) * Include windows.h
-
Victor Stinner authored
I suppose that I reapplied my local patch creating Python/fileutils.c whereas the file already existed.
-
Victor Stinner authored
* _Py_fopen() and _Py_stat() come from Python/import.c * (_Py)_wrealpath() comes from Python/sysmodule.c * _Py_char2wchar(), _Py_wchar2char() and _Py_wfopen() come from Modules/main.c * (_Py)_wstat(), (_Py)_wgetcwd(), _Py_wreadlink() come from Modules/getpath.c
-
Victor Stinner authored
Use _Py_wchar2char() to support surrogate characters in the input path.
-
Brian Curtin authored
This undoes a previous attempt to fix some of the skips. Value and copy come from sharedctypes rather than plain ctypes, and the test skipping is then done at the class level rather than test-by-test. There are zero skipped tests after the fix.
-
Victor Stinner authored
All unicode functions uses PyObject* except PyUnicode_AsWideChar(). Fix the prototype for the new function PyUnicode_AsWideCharString().
-
Victor Stinner authored
* Create format_arg variable to use the right types * Strip trailing spaces
-
- 06 Oct, 2010 9 commits
-
-
Victor Stinner authored
* fix argv0 reference counter if PyList_SetItem() fails * don't use complex if conditions, but a simple indentation and "goto error" * simplify error handling (remove Py_XDECREF(importer) from the error label) * don't set sys_path to NULL (it's useless, sys_path is a borrowed reference and sys_path is not a static variable) * try to write only one instruction per line for better readability
-
Victor Stinner authored
Create sys_update_path() static function. Do nothing if argc==0.
-
Antoine Pitrou authored
after the file is closed. Patch by Jeffrey Finkelstein.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Brian Quinlan authored
-
Georg Brandl authored
-
Georg Brandl authored
Fix the suspicious builder not to write CRLF, update suspicious file and add instructions to Makefile.
-
Georg Brandl authored
-