summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Credit Per Øyvind Karlsen for the initial implementation of the lzma module ↵Nadeem Vawda2011-11-303-1/+8
| | | | (issue #6715).
* Issue #1040439: better document how to compile and link an embedded Python ↵Antoine Pitrou2011-11-301-31/+47
|\ | | | | | | | | | | interpreter. Still lacks docs for Windows (anyone?).
| * Issue #1040439: better document how to compile and link an embedded Python ↵Antoine Pitrou2011-11-301-31/+47
| | | | | | | | | | | | interpreter. Still lacks docs for Windows (anyone?).
* | Make error handling in BZ2File.{readable,seekable,writable,fileno} ↵Nadeem Vawda2011-11-302-4/+59
| | | | | | | | | | | | consistent with TextIOWrapper. Also, add tests for these methods.
* | Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-2916-6/+3773
| |
* | Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macrosVictor Stinner2011-11-292-26/+23
| | | | | | | | And use surrogates macros everywhere in unicodeobject.c
* | Mention hashable memoryviews, and reformat.Antoine Pitrou2011-11-291-13/+13
| |
* | Add subheaders to make PEP 393 description clearerAntoine Pitrou2011-11-291-22/+28
| |
* | Merge 3.2Éric Araujo2011-11-2911-16/+37
|\ \ | |/
| * Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487).Éric Araujo2011-11-293-1/+5
| | | | | | | | | | | | This fixes a regression compared to 2.x, where sys.modules.items() returns a copy, as indicated by a comment in the source. Diagnosis and patch by Erik Tollerud.
| * Mark up constants in sockets docs as suchÉric Araujo2011-11-291-8/+8
| |
| * Fix instructions on how to rebuild some modulesÉric Araujo2011-11-293-3/+3
| |
| * Add a regrtest cleanup check for shutil registriesÉric Araujo2011-11-291-0/+19
| |
| * Fix last remaining references to ex-devguideÉric Araujo2011-11-292-3/+2
| |
| * Fix typo (#13467)Éric Araujo2011-11-291-1/+1
| |
* | cleanup setup.py for curses optionsVictor Stinner2011-11-281-9/+8
| |
* | (Merge 3.2) Fix curses module for strict SysV implementation (without ↵Victor Stinner2011-11-281-1/+1
|\ \ | |/ | | | | has_key function)
| * Fix curses module for strict SysV implementation (without has_key function)Victor Stinner2011-11-281-1/+1
| |
* | Merge test_xmlrpc_net fixes (issue #13434)Antoine Pitrou2011-11-281-1/+2
|\ \ | |/
| * Fix resource warning in test_xmlrpc_netAntoine Pitrou2011-11-281-0/+1
| |
| * Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test.Antoine Pitrou2011-11-281-1/+1
| |
* | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-283-15/+59
|\ \ | |/ | | | | | | It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).
| * Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-283-15/+59
| | | | | | | | | | It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).
* | Issue #12618: py_compile cannot create files in current directoryMeador Inge2011-11-284-1/+16
|\ \ | |/ | | | | Initial patch by Sjoerd de Vries.
| * Issue #12618: py_compile cannot create files in current directoryMeador Inge2011-11-284-1/+16
| | | | | | | | Initial patch by Sjoerd de Vries.
* | Issue #13415: test_curses skips unencodable charactersVictor Stinner2011-11-281-1/+8
| |
* | Null merge.Charles-François Natali2011-11-270-0/+0
|\ \ | |/
| * Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.Charles-François Natali2011-11-271-0/+4
| |
* | Null merge.Charles-François Natali2011-11-270-0/+0
|\ \ | |/
| * Issue #13415: Test in configure if unsetenv() has a return value or not.Charles-François Natali2011-11-274-310/+333
| |
* | MERGE: Closes issue #13488: Some old preprocessors have problem with #define ↵Jesus Cea2011-11-271-80/+80
|\ \ | |/ | | | | not in the first column
| * Closes issue #13488: Some old preprocessors have problem with #define not in ↵Jesus Cea2011-11-271-80/+80
| | | | | | | | the first column
* | Issue #13415: Help to locate curses.h when _curses module is linked to ncurseswVictor Stinner2011-11-262-1/+8
| |
* | Issue #13444: When stdout has been closed explicitly, we should not attempt ↵Antoine Pitrou2011-11-263-2/+40
|\ \ | |/ | | | | | | | | to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue.
| * Issue #13444: When stdout has been closed explicitly, we should not attempt ↵Antoine Pitrou2011-11-263-2/+40
| | | | | | | | | | | | to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue.
* | Issue #12618: fix py_compile unit tests to handle different drives on WindowsMeador Inge2011-11-261-0/+10
|\ \ | |/
| * Issue #12618: fix py_compile unit tests to handle different drives on WindowsMeador Inge2011-11-261-0/+10
| |
* | sched.py: fix test_queue by making sure that queue property returns an ↵Giampaolo Rodola'2011-11-261-7/+8
| | | | | | | | orderd list of upcoming events
* | Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6Charles-François Natali2011-11-261-0/+4
| | | | | | | | (where unsetenv() doesn't return a value).
* | Issue #12618: create unit tests for the py_compile moduleMeador Inge2011-11-261-0/+42
|\ \ | |/
| * Issue #12618: create unit tests for the py_compile moduleMeador Inge2011-11-261-0/+42
| |
* | Issue #13380: add an internal function for resetting the ctypes cachesMeador Inge2011-11-264-9/+25
|\ \ | |/
| * Issue #13380: add an internal function for resetting the ctypes cachesMeador Inge2011-11-264-9/+25
| |
* | Some libcs' snprintf may output a leading minus sign when %p-formattingAntoine Pitrou2011-11-261-17/+17
| | | | | | | | (should fix a failure on the OpenIndiana AMD64 buildbot)
* | Merge headsAntoine Pitrou2011-11-2632-306/+1040
|\ \
| * | Issue #12567: The curses module uses Unicode functions for Unicode argumentsVictor Stinner2011-11-256-121/+520
| | | | | | | | | | | | | | | when it is linked to the ncurses library. It encodes also Unicode strings to the locale encoding instead of UTF-8.
| * | Issue #12856: Ensure child processes do not inherit the parent's random seed ↵Antoine Pitrou2011-11-253-2/+43
| |\ \ | | |/ | | | | | | | | | | | | for filename generation in the tempfile module. Patch by Brian Harring.
| | * Issue #12856: Ensure child processes do not inherit the parent's random seed ↵Antoine Pitrou2011-11-253-2/+43
| | | | | | | | | | | | | | | | | | for filename generation in the tempfile module. Patch by Brian Harring.
| * | NEWS: fix the issue number for PyUnicode_EncodeDecimal changeVictor Stinner2011-11-251-1/+1
| | |
| * | Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlersVictor Stinner2011-11-253-127/+26
| | | | | | | | | | | | | | | different than "strict" anymore. The caller was unable to compute the size of the output buffer: it depends on the error handler.