Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | One more change for issue 9807, by Matthias Klose. | Barry Warsaw | 2010-10-18 | 4 | -5/+6 |
| | | | | | This adds $ABIFLAGS to the static library, since it should match the shared library name. Also, include the abiflags in python-config --libs. | ||||
* | Reverted inadvertent change that slipped into r85695 | Alexander Belopolsky | 2010-10-18 | 1 | -1/+0 |
| | |||||
* | Issue #10117: Tools/scripts/reindent.py now accepts source files that | Alexander Belopolsky | 2010-10-18 | 3 | -2/+9 |
| | | | | | use encoding other than ASCII or UTF-8. Source encoding is preserved when reindented code is written to a file. | ||||
* | Fix hash function type. | Georg Brandl | 2010-10-18 | 1 | -1/+1 |
| | |||||
* | get_code_from_data() uses the filesystem encoding to encode the module path, | Victor Stinner | 2010-10-18 | 1 | -8/+7 |
| | | | | instead of utf-8. | ||||
* | zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending on | Victor Stinner | 2010-10-18 | 1 | -2/+9 |
| | | | | | the unicode flag, to decode the filename, instead of the filesystem encoding. Use the same choice than the zipfile module. | ||||
* | Issue #5117: Case normalization was needed on ntpath.relpath(). And | Hirokazu Yamamoto | 2010-10-18 | 5 | -4/+27 |
| | | | | | fixed root directory issue on posixpath.relpath(). (Ported working fixes from ntpath) | ||||
* | zipimport: get_module_code() returns modpath as a Unicode object | Victor Stinner | 2010-10-18 | 1 | -12/+23 |
| | | | | | ... instead of a char*. Encode the module path to the fileystem encoding (for PyImport_ExecCodeModuleEx) instead of utf-8. | ||||
* | zipimporter_load_module() doesn't destroy mod on error | Victor Stinner | 2010-10-18 | 1 | -9/+9 |
| | | | | | PyImport_AddModule() returns a borrowed reference. Don't display "import ... # loaded from Zip ..." on error. | ||||
* | zipimport: encode the prefix to the fileystem encoding | Victor Stinner | 2010-10-18 | 1 | -8/+15 |
| | |||||
* | zipimport, get_module_code(): avoid useless _PyUnicode_AsString() | Victor Stinner | 2010-10-18 | 1 | -3/+2 |
| | |||||
* | zipimport: fix indentation | Victor Stinner | 2010-10-18 | 1 | -4/+5 |
| | |||||
* | Remove more unneeded casts to hashfunc. | Georg Brandl | 2010-10-18 | 2 | -6/+6 |
| | |||||
* | Remove unneeded casts to hashfunc. | Georg Brandl | 2010-10-18 | 3 | -5/+5 |
| | |||||
* | Fix type of hash function. | Georg Brandl | 2010-10-18 | 1 | -1/+1 |
| | |||||
* | Fix compiler warning about unused static function. | Georg Brandl | 2010-10-18 | 1 | -1/+4 |
| | |||||
* | Fix compiler warnings about formatting pid_t as an int, by always casting to ↵ | Georg Brandl | 2010-10-18 | 1 | -1/+1 |
| | | | | long. | ||||
* | #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. | R. David Murray | 2010-10-18 | 2 | -0/+6 |
| | | | | Patch by Sébastien Sablé. This solves a test_mmap failure on AIX. | ||||
* | #4499: silence compiler warning on AIX. | R. David Murray | 2010-10-18 | 1 | -0/+2 |
| | | | | Patch from ActiveState. | ||||
* | Tighten up 'byte string' wording in base64 docs. | R. David Murray | 2010-10-17 | 1 | -20/+22 |
| | |||||
* | #1343: Add short_empty_elements option to XMLGenerator. | R. David Murray | 2010-10-17 | 4 | -8/+135 |
| | | | | Patch and tests by Neil Muller. | ||||
* | Note the resolution of issue 9778. | Skip Montanaro | 2010-10-17 | 1 | -0/+6 |
| | |||||
* | -1 is reserved for errors | Benjamin Peterson | 2010-10-17 | 1 | -0/+3 |
| | |||||
* | fix prototype | Benjamin Peterson | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | fix strict aliasing warnings | Benjamin Peterson | 2010-10-17 | 1 | -2/+2 |
| | |||||
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 31 | -131/+137 |
| | |||||
* | test_httpservers: Python CGI scripts have to be encoded to utf-8 | Victor Stinner | 2010-10-17 | 1 | -2/+2 |
| | | | | | And not the locale encoding. With this commit, the test finally pass on Windows with a non-ascii path :-) | ||||
* | test_httpservers: Fix skip test check, the python executable path have to be | Victor Stinner | 2010-10-17 | 1 | -7/+10 |
| | | | | encodable to utf-8, not to the file1 encoding. | ||||
* | use helper hash unimplemented function | Benjamin Peterson | 2010-10-17 | 1 | -8/+1 |
| | |||||
* | Fix T_BOOL bug of issue 8845. | Martin v. Löwis | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | test_httpservers: skip CGI tests if Python executable path is not encodable | Victor Stinner | 2010-10-17 | 1 | -3/+14 |
| | |||||
* | Remove the external non-python.org hyperlink and point people to | Gregory P. Smith | 2010-10-17 | 1 | -2/+1 |
| | | | | Tools/gdb/libpython.py. | ||||
* | Drop OPT:Olimit, as it confuses SunPRO (and other compilers). | Martin v. Löwis | 2010-10-17 | 3 | -129/+3 |
| | |||||
* | libpython: implementation of os.fsencode() with surrogateescape error handler | Victor Stinner | 2010-10-17 | 1 | -2/+20 |
| | |||||
* | run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of | Victor Stinner | 2010-10-17 | 1 | -2/+2 |
| | | | | PyUnicode_AsUTF8String() | ||||
* | compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, | Victor Stinner | 2010-10-17 | 1 | -2/+11 |
| | | | | instead of utf-8 in strict mode. | ||||
* | PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of | Victor Stinner | 2010-10-17 | 1 | -1/+1 |
| | | | | PyUnicode_FromString(), to decode the filename. | ||||
* | The py_decref macro was incorrect and unnecessary. | Gregory P. Smith | 2010-10-17 | 1 | -10/+0 |
| | |||||
* | * Applys part of the patch from http://bugs.python.org/issue3631 to add | Gregory P. Smith | 2010-10-17 | 1 | -8/+21 |
| | | | | | | | a py_decref macro, fixup the pyo macro and reuse it and avoid a memory leak introduced by the pylocals macro. * Adds a note about gdb 7 python debugging support with links for more info on that. | ||||
* | - Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension. | Matthias Klose | 2010-10-17 | 2 | -1/+3 |
| | |||||
* | Syntax fixes for examples in the Doc/includes | Senthil Kumaran | 2010-10-17 | 2 | -4/+4 |
| | |||||
* | #9730: fix example. | Georg Brandl | 2010-10-17 | 1 | -2/+2 |
| | |||||
* | Fix documentation of dis.opmap direction. | Georg Brandl | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | Make twisted example a bit more logical. | Georg Brandl | 2010-10-17 | 1 | -5/+5 |
| | |||||
* | Port changes to pickle docs apparently lost in py3k. | Georg Brandl | 2010-10-17 | 1 | -79/+85 |
| | |||||
* | #9237: document sys.call_tracing(). | Georg Brandl | 2010-10-17 | 1 | -0/+7 |
| | |||||
* | #5121: fix claims about default values leading to segfaults. | Georg Brandl | 2010-10-17 | 1 | -10/+10 |
| | |||||
* | #9204: remove mentions of removed types in the types module. | Georg Brandl | 2010-10-17 | 10 | -29/+15 |
| | |||||
* | Fix capitalization. | Georg Brandl | 2010-10-17 | 1 | -2/+2 |
| | |||||
* | Fix Issue10119 - test_urllibnet failure when using support.transient_internet. | Senthil Kumaran | 2010-10-17 | 1 | -20/+10 |
| |