summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY.R. David Murray2010-10-181-0/+2
| | | | Patch by Sébastien Sablé. This solves a test_mmap failure on AIX.
* #1343: Add short_empty_elements option to XMLGenerator.R. David Murray2010-10-171-0/+3
| | | | Patch and tests by Neil Muller.
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-0/+6
|
* Remove the external non-python.org hyperlink and point people toGregory P. Smith2010-10-171-2/+1
| | | | Tools/gdb/libpython.py.
* Drop OPT:Olimit, as it confuses SunPRO (and other compilers).Martin v. Löwis2010-10-171-0/+2
|
* The py_decref macro was incorrect and unnecessary.Gregory P. Smith2010-10-171-10/+0
|
* * Applys part of the patch from http://bugs.python.org/issue3631 to addGregory P. Smith2010-10-171-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 Klose2010-10-171-0/+2
|
* Issue #10123: Don't use non-ascii filenames in test_doctest tests. Add aVictor Stinner2010-10-161-0/+6
| | | | new test specific to unicode (non-ascii name and filename).
* Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-161-1/+5
| | | | | filenames encoded to the filesystem encoding with surrogateescape error handler (to support undecodable bytes), instead of UTF-8 in strict mode.
* Fix incorrect maintainer nameBrian Quinlan2010-10-161-1/+1
|
* Add bquinlan as the maintainer of concurrent.futuresBrian Quinlan2010-10-161-0/+1
|
* don't identify the toplevel namespace by name #9997Benjamin Peterson2010-10-161-0/+3
|
* Add NEWS for issue 9807 part 1.Barry Warsaw2010-10-161-0/+3
|
* First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-161-1/+4
| | | | | | | | | * Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
* #9862: On AIX PIPE_BUF is broken. Make it 512.R. David Murray2010-10-151-0/+3
| | | | Patch by Sébastien Sablé.
* #6098: Refrain from claiming DOM level 3 conformance in minidom.Georg Brandl2010-10-151-0/+2
|
* #5762: fix handling of empty namespace in minidom, which would result in ↵Georg Brandl2010-10-151-0/+3
| | | | AttributeError on toxml().
* Fix issue references.Georg Brandl2010-10-151-2/+2
|
* Issue #9308: Removed redundant coding cookies. Added tests forAlexander Belopolsky2010-10-151-0/+3
| | | | | importing encoded modules that do not depend on specific stdlib modules being encoded in a certain way.
* #9054: fix crash when using pyexpat with a system expat lib version 2.0.1.Georg Brandl2010-10-151-0/+3
|
* #2830: add html.escape() helper and move cgi.escape() uses in the standard ↵Georg Brandl2010-10-151-0/+3
| | | | library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning.
* #5355: Provide mappings from Expat error numbers to string descriptions and ↵Georg Brandl2010-10-151-0/+4
| | | | backwards, in order to actually make it possible to analyze error codes provided by ExpatError.
* Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-0/+3
| | | | | | | | * PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if Py_FileSystemDefaultEncoding is NULL * redecode_filenames() functions and _Py_code_object_list (issue #9630) are no more needed: remove them
* Fix the regex to match all kind of filenames, for interactive debugging in ↵Florent Xicluna2010-10-141-0/+3
| | | | doctests. (issue #9409)
* Issue 9183: Intern UTC timezone.Alexander Belopolsky2010-10-141-0/+3
|
* - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.Matthias Klose2010-10-141-0/+5
|
* Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-142-2/+5
| | | | where supported by the system. Patch by Nikita Vetoshkin.
* Issue #10095: fp_setreadl() doesn't reopen the file, reuse instead the fileVictor Stinner2010-10-141-0/+3
| | | | descriptor.
* Issue10063 - file:// scheme will stop accessing remote hosts via ftp protocolSenthil Kumaran2010-10-141-0/+6
|
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-141-0/+3
|
* #1710703: write zipfile structures also in the case of closing a new, but ↵Georg Brandl2010-10-141-0/+4
| | | | empty, archive.
* Revert r85435 (and r85440): decode command line arguments from utf-8Victor Stinner2010-10-131-3/+0
| | | | | | | Python exits with a fatal error if the command line contains an undecodable argument. PyUnicode_FromString() fails at the first undecodable byte because it calls the error handler, but error handlers are not ready before Python initialization.
* put PYTHONIOENCODING in man pageBenjamin Peterson2010-10-131-2/+11
|
* Issue #9992: On Mac OS X, decode command line arguments from utf-8 instead ofVictor Stinner2010-10-131-0/+3
| | | | the locale encoding.
* Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-0/+2
|
* remove obselete import implementation #7287Benjamin Peterson2010-10-131-0/+5
|
* Issue #10041: The signature of optional arguments in socket.makefile()Antoine Pitrou2010-10-132-0/+5
| | | | | didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
* Adding Wing IDE version 4 project fileMichael Foord2010-10-132-0/+13
|
* Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler andAntoine Pitrou2010-10-131-0/+4
| | | | | urllib.request.urlopen now take optional arguments to allow for server certificate checking, as recommended in public uses of HTTPS.
* prefer clearing global objects to obscure module.__dict__ bugs #10068Benjamin Peterson2010-10-121-0/+3
|
* NEWS: Move #6612 to Library sectionVictor Stinner2010-10-121-3/+3
|
* #6612: add the author of the patch (W. Trevor King)Victor Stinner2010-10-122-1/+2
|
* Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if theVictor Stinner2010-10-121-0/+3
| | | | current directory was deleted.
* Issue #3873: Speed up unpickling from file objects which have a peek()Antoine Pitrou2010-10-121-0/+3
| | | | method.
* Issue #10075: Add a session_stats() method to SSLContext objects.Antoine Pitrou2010-10-121-0/+2
|
* Post-release bumps.Georg Brandl2010-10-121-2/+2
|
* Add entry for r85371.Martin v. Löwis2010-10-111-0/+2
|
* Add 3.2b1.Martin v. Löwis2010-10-111-2/+17
|
* Issue #9948: logging: fixed problem of losing filename case information.Vinay Sajip2010-10-101-0/+2
|