Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set ↵ | Ronald Oussoren | 2012-08-22 | 2 | -1/+3 |
| | | | | | | | on Mac OS X. This is due to an off-by-one error: the allocated buffer didn't have room for a NUL character at the end of the mbstowcs result. | ||||
* | Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. | Trent Nelson | 2012-08-21 | 2 | -3/+24 |
| | | | | This is necessary for ZFS systems, which don't support UF_IMMUTABLE. | ||||
* | #15752: s/assertRaisesRegexp/assertRaisesRegex/g | Ezio Melotti | 2012-08-21 | 1 | -2/+2 |
| | |||||
* | Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). | Stefan Krah | 2012-08-21 | 2 | -0/+15 |
| | |||||
* | Issue #15285: Refactor connect timeout test in test_timeout. | Trent Nelson | 2012-08-21 | 2 | -8/+86 |
| | |||||
* | Issue #14954: Clarify the interaction of weak references and garbage collection. | Antoine Pitrou | 2012-08-20 | 2 | -1/+5 |
| | | | | Patch by Ethan Furman. | ||||
* | #15199: Fix JavaScript's default MIME type to application/javascript | Petri Lehtinen | 2012-08-20 | 3 | -1/+5 |
| | |||||
* | #15742: clarify sqlite parameter substitution example. | R David Murray | 2012-08-20 | 1 | -1/+1 |
| | | | | Suggestion and patch by Mike Hoy. | ||||
* | Issue #15726: Fix incorrect bounds checking in PyState_FindModule. | Antoine Pitrou | 2012-08-20 | 3 | -1/+5 |
| | | | | Patch by Robin Schreiber. | ||||
* | Issue #15741: Fix potential NULL dereference. Found by Coverity. | Stefan Krah | 2012-08-20 | 1 | -0/+2 |
| | |||||
* | Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). | Stefan Krah | 2012-08-20 | 2 | -0/+12 |
| | |||||
* | Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). | Stefan Krah | 2012-08-20 | 2 | -0/+18 |
| | | | | Found by Coverity. | ||||
* | #13579: teach string.Formatter about 'a'. | R David Murray | 2012-08-19 | 4 | -9/+26 |
| | | | | Patch by Francisco Martín Brugué. | ||||
* | Issue #15595: Fix subprocess.Popen(universal_newlines=True) | Andrew Svetlov | 2012-08-19 | 3 | -2/+38 |
| | | | | | | for certain locales (utf-16 and utf-32 family). Patch by Chris Jerdonek. | ||||
* | Check for NULL return value in PyStructSequence_NewType(). Found by Coverity. | Stefan Krah | 2012-08-19 | 1 | -1/+3 |
| | |||||
* | Allow redemo.py to be used from the command line like other demos. | Ned Deily | 2012-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #15615: Add some tests for the json module's handling of invalid input ↵ | Antoine Pitrou | 2012-08-18 | 3 | -0/+13 |
| | | | | | | data. Patch by Kushal Das. | ||||
* | Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. | Mark Dickinson | 2012-08-18 | 4 | -10/+28 |
| | |||||
* | tutorial typo fix | Eli Bendersky | 2012-08-18 | 1 | -1/+1 |
| | |||||
* | #15636: add versionadded for decodebytes | R David Murray | 2012-08-18 | 1 | -0/+2 |
| | |||||
* | #15355: Mention already-executing Exception in generator docs. | R David Murray | 2012-08-18 | 1 | -2/+9 |
| | | | | Patch by Chris Jerdonek. | ||||
* | #15694: reflow paragraph. | R David Murray | 2012-08-18 | 1 | -3/+2 |
| | |||||
* | #15694: Link discussion of file objects to glossary entry. | R David Murray | 2012-08-18 | 2 | -8/+16 |
| | | | | | | | | This is analogous to the link for `flie objects` in the description of 'open' that exists in the 2.7 docs, and adds a similar link to the io docs. Patch by Chris Jerdonek. | ||||
* | Issue 15660: Clarify 0 prefix for width field in str.format doc. | Terry Jan Reedy | 2012-08-17 | 1 | -3/+3 |
| | |||||
* | Issue #15412: Remove erroneous note about weakrefs | Richard Oudkerk | 2012-08-17 | 1 | -6/+0 |
| | |||||
* | Issue #14501: Clarify that authentication keys are byte strings | Richard Oudkerk | 2012-08-17 | 1 | -19/+20 |
| | |||||
* | Update the getpeercert() example with a real-world cert showing non-trivial ↵ | Antoine Pitrou | 2012-08-16 | 1 | -17/+33 |
| | | | | issuer, subject and subjectAltName. | ||||
* | #11062: Fix universal newline support in Babyl._install_message() | Petri Lehtinen | 2012-08-16 | 1 | -3/+10 |
| | | | | | When adding a message from a binary file, \r\n was translated to \r\r\n in the message body. | ||||
* | Fix str docstring | Nick Coghlan | 2012-08-16 | 1 | -4/+8 |
| | |||||
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵ | Antoine Pitrou | 2012-08-15 | 11 | -39/+87 |
| | | | | | | errors correctly. Patch by Serhiy Storchaka. | ||||
* | clarify in/not in in case of infinite iterators; thanks to Sergey ↵ | Sandro Tosi | 2012-08-15 | 1 | -2/+2 |
| | | | | Skovorodkin from docs@ | ||||
* | #15543: reflow paragraphs. | R David Murray | 2012-08-15 | 6 | -34/+31 |
| | |||||
* | #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 13 | -23/+77 |
| | | | | Patch by Chris Jerdonek. | ||||
* | merge heads in 3.2 branch | Eli Bendersky | 2012-08-15 | 3 | -13/+9 |
|\ | |||||
| * | #11062: Fix adding a message from file to Babyl mailbox | Petri Lehtinen | 2012-08-15 | 3 | -13/+9 |
| | | |||||
* | | Issue #15656: fixing code sample in extending doc | Eli Bendersky | 2012-08-15 | 1 | -5/+10 |
|/ | |||||
* | #15269: document dircmp.left and right, and add tests for them. | R David Murray | 2012-08-15 | 2 | -2/+33 |
| | | | | Patch by Chris Jerdonek. | ||||
* | fix typo | Sandro Tosi | 2012-08-14 | 1 | -1/+1 |
| | |||||
* | Merge 3.2 | Andrew Svetlov | 2012-08-14 | 1 | -1/+1 |
|\ | |||||
| * | Modules/socketmodule.c: netdb_lock: define static. | Matthias Klose | 2012-08-14 | 1 | -1/+1 |
| | | |||||
* | | Add test to explicit check the absence regression in subprocess (issue #15592). | Andrew Svetlov | 2012-08-14 | 1 | -0/+12 |
|/ | | | | Patch by Chris Jerdonek. | ||||
* | Issue #14167: Document return statement in finally blocks. | Andrew Svetlov | 2012-08-14 | 1 | -6/+17 |
| | | | | Patch by Yury Selivanov. | ||||
* | Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing | Richard Oudkerk | 2012-08-14 | 4 | -2/+40 |
| | | | | on Windows without the "if __name__ == '__main__'" idiom. | ||||
* | Restore original line lengths. | Georg Brandl | 2012-08-14 | 2 | -32/+26 |
| | |||||
* | Fix #15496. Add directory removal helpers to make Windows tests more ↵ | Brian Curtin | 2012-08-13 | 2 | -2/+69 |
| | | | | reliable. Patch by Jeremy Kloth | ||||
* | Issue #15497: Correct characters in TextWrapper.replace_whitespace docs. | Andrew Svetlov | 2012-08-13 | 1 | -3/+5 |
| | | | | Patch by Chris Jerdonek. | ||||
* | Issue #15561: Update subprocess docs to reference io.TextIOWrapper. | Andrew Svetlov | 2012-08-13 | 1 | -19/+21 |
| | | | | Patch by Chris Jerdonek. | ||||
* | Issue #15624: clarify newline documentation for open and io.TextIOWrapper | Andrew Svetlov | 2012-08-13 | 2 | -24/+30 |
| | | | | Thanks to Chris Jerdonek | ||||
* | Issue #15630: Add an example for "continue" statement in the tutorial. Patch by | Senthil Kumaran | 2012-08-12 | 2 | -3/+19 |
| | | | | Daniel Ellis. | ||||
* | add usage example from cli; thanks to Christian Clauss from docs@ | Sandro Tosi | 2012-08-12 | 1 | -1/+3 |
| |