summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13841: Make child processes exit using sys.exit() on WindowsRichard Oudkerk2012-06-141-0/+2
|
* Issue #14936: curses_panel was converted to PEP 3121 and PEP 384 API.Martin v. Löwis2012-06-141-1/+1
| | | | Patch by Robin Schreiber.
* Issue #14936: curses_panel was converted to PEP 3121 API.Martin v. Löwis2012-06-141-0/+3
| | | | Patch by Robin Schreiber.
* Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fieldsAlexander Belopolsky2012-06-141-0/+5
| | | | | | in struct tm, time.struct_time objects returned by time.gmtime(), time.localtime() and time.strptime() functions now have tm_zone and tm_gmtoff attributes. Original patch by Paul Boddie.
* PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() resultVictor Stinner2012-06-121-0/+2
| | | | | | | | Fix also its value on Windows and Linux according to its documentation: "adjustable" indicates if the clock *can be* adjusted, not if it is or was adjusted. In most cases, it is not possible to indicate if a clock is or was adjusted.
* Issue #3518: Remove references to non-existent BaseManager.from_address()Richard Oudkerk2012-06-111-0/+3
| | | | method
* Close #13857: Added textwrap.indent() function (initial patch by EzraNick Coghlan2012-06-112-0/+4
| | | | Berch)
* Issue #2736: Added datetime.timestamp() method.Alexander Belopolsky2012-06-081-0/+2
|
* Merge from 3.2, #12510Terry Jan Reedy2012-06-081-5/+6
|\
| * Issue #12510: Revise and triple # of calltip tests, with an eye to unittestTerry Jan Reedy2012-06-071-6/+7
| | | | | | | | | | | | use. Make the get_entity 'method' a module function as it did not use 'self'. Delete buggy _find_constructor function that is not needed, at least in 3.x. Revise get_argspec so all tests pass. Add and fix NEWS entries.
* | Merge fixes for #13854 and #12157.Richard Oudkerk2012-06-071-0/+6
|\ \ | |/
| * Issue #13854: Properly handle non-integer, non-string arg to SystemExitRichard Oudkerk2012-06-061-0/+3
| | | | | | | | | | Previously multiprocessing only expected int or str. It also wrongly used an exit code of 1 when the argument was a string instead of zero.
| * Issue #12157: pool.map() does not handle empty iterable correctlyRichard Oudkerk2012-06-061-0/+3
| | | | | | | | Initial patch by mouad
* | Issue #11823: disassembly now shows argument counts on calls with keyword argsAlexander Belopolsky2012-06-071-0/+2
| |
* | Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.Gregory P. Smith2012-06-051-0/+5
|\ \ | |/
| * Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.Gregory P. Smith2012-06-051-0/+2
| |
| * Move the 14992 note to the correct section.Gregory P. Smith2012-06-031-5/+5
| |
* | Close #11022: TextIOWrapper doesn't call locale.setlocale() anymoreVictor Stinner2012-06-051-0/+6
| | | | | | | | | | | | | | | | | | | | open() and io.TextIOWrapper are now calling locale.getpreferredencoding(False) instead of locale.getpreferredencoding() in text mode if the encoding is not specified. Don't change temporary the locale encoding using locale.setlocale(), use the current locale encoding instead of the user preferred encoding. Explain also in open() documentation that locale.getpreferredencoding(False) is called if the encoding is not specified.
* | Issue #14711: os.stat_float_times() has been deprecated.Victor Stinner2012-06-041-0/+2
| |
* | Add a function lzma.open(), to match gzip.open() and bz2.open().Nadeem Vawda2012-06-041-2/+2
| |
* | Allow LZMAFile to accept modes with a "b" suffix.Nadeem Vawda2012-06-041-0/+2
| |
* | Simplify usage of LZMAFile's fileobj support, like with BZ2File.Nadeem Vawda2012-06-041-2/+2
| |
* | Add a function bz2.open(), to match gzip.open().Nadeem Vawda2012-06-041-0/+3
| |
* | Make BZ2File's fileobj support easier to use.Nadeem Vawda2012-06-041-0/+3
| | | | | | | | | | The fileobj argument was added during the 3.3 development cycle, so this change does not break backward compatibility with 3.2.
* | Add fileobj support to gzip.open().Nadeem Vawda2012-06-041-0/+2
| |
* | Add NEWS entry.Barry Warsaw2012-06-041-0/+5
| |
* | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-0/+5
|\ \ | |/ | | | | | | | | when the path existed and had the S_ISGID mode bit set when it was not explicitly asked for. This is no longer an exception as mkdir cannot control if the OS sets that bit for it or not.
| * Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-0/+5
| | | | | | | | | | | | when the path existed and had the S_ISGID mode bit set when it was not explicitly asked for. This is no longer an exception as mkdir cannot control if the OS sets that bit for it or not.
* | merge headsSenthil Kumaran2012-06-031-0/+1
|\ \
| * | Issue #14090: fix some minor C API problems in default branch (3.3)Eli Bendersky2012-06-031-0/+1
| | |
* | | Issue 14989: http.server --cgi option can enable the CGI http server.Senthil Kumaran2012-06-031-0/+3
|/ /
* | Issue #14987: Add a missing import statementBrett Cannon2012-06-031-0/+2
| |
* | #1079: Fix parsing of encoded words.R David Murray2012-06-021-0/+4
| | | | | | | | | | | | | | | | | | This is a behavior change: before this leading and trailing spaces were stripped from ASCII parts, now they are preserved. Without this fix we didn't parse the examples in the RFC correctly, so I think breaking backward compatibility here is justified. Patch by Ralf Schlatterbeck.
* | Close #14969: Improve the handling of exception chaining in contextlib.ExitStackNick Coghlan2012-06-011-0/+2
| |
* | Reformat two issue numbersBrian Curtin2012-06-011-2/+2
| |
* | Post-release update.Georg Brandl2012-05-311-2/+3
| |
* | Issue #14962: mergeNed Deily2012-05-311-0/+3
|\ \ | |/
| * Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-311-0/+3
| | | | | | | | options. Patch by Roger Serwy.
* | Close #14963: Use an iterative algorithm in contextlib.ExitStack.__exit__ ↵Nick Coghlan2012-05-311-1/+7
| | | | | | | | (Patch by Alon Horev)
* | Issue #14963: Added test cases for contextlib.ExitStack exception handling ↵Nick Coghlan2012-05-312-0/+12
| | | | | | | | behaviour (Initial patch by Alon Horev)
* | Bump version to 3.3.0a4.v3.3.0a4Georg Brandl2012-05-302-2/+2
| |
* | Close #14690: Use monotonic clock instead of system clock in the sched,Victor Stinner2012-05-301-0/+3
| | | | | | | | subprocess and trace modules.
* | Issue #14958: Change IDLE systax highlighting to recognize all string andNed Deily2012-05-301-0/+3
| | | | | | | | byte literals supported in Python 3.3.
* | Merge 3.2 news itemBrian Curtin2012-05-291-0/+2
|\ \ | |/
| * Add news item for #14943Brian Curtin2012-05-291-0/+3
| |
* | Issue #10997: merge from 3.2Ned Deily2012-05-291-0/+2
|\ \ | |/
| * Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-291-0/+2
| |
* | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ↵Victor Stinner2012-05-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and str.format(args) * Formatting string, int, float and complex use the _PyUnicodeWriter API. It avoids a temporary buffer in most cases. * Add _PyUnicodeWriter_WriteStr() to restore the PyAccu optimization: just keep a reference to the string if the output is only composed of one string * Disable overallocation when formatting the last argument of str%args and str.format(args) * Overallocation allocates at least 100 characters: add min_length attribute to the _PyUnicodeWriter structure * Add new private functions: _PyUnicode_FastCopyCharacters(), _PyUnicode_FastFill() and _PyUnicode_FromASCII() The speed up is around 20% in average.
* | #14835: Make plistlib output empty arrays & dicts like OS XHynek Schlawack2012-05-292-0/+4
| | | | | | | | Patch by Sidney San Martín.
* | Issue #14930: Make memoryview objects weakrefable.Richard Oudkerk2012-05-281-0/+2
| |