| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1 | Antoine Pitrou | 2011-01-15 | 2 | -5/+7 |
| | | |||||
| * | Bump to 3.2rc1. | Georg Brandl | 2011-01-15 | 6 | -8/+10 |
| | | |||||
| * | Fix "make suspicious" errors and update ignore file. | Georg Brandl | 2011-01-15 | 3 | -2/+24 |
| | | |||||
| * | Fix a few doc errors, mostly undefined keywords. | Georg Brandl | 2011-01-15 | 14 | -57/+57 |
| | | |||||
| * | Update to 1.0.7. | Georg Brandl | 2011-01-15 | 3 | -3/+3 |
| | | |||||
| * | Update pydoc topics. | Georg Brandl | 2011-01-15 | 1 | -11/+11 |
| | | |||||
| * | Issue #10916: mmap should not segfault when a file is mapped using 0 as | Antoine Pitrou | 2011-01-15 | 3 | -1/+18 |
| | | | | | | | | length and a non-zero offset, and an attempt to read past the end of file is made (IndexError is raised instead). Patch by Ross Lagerwall. Requested by Georg. | ||||
| * | Nits | Antoine Pitrou | 2011-01-15 | 1 | -10/+6 |
| | | |||||
| * | Issue #10913: Deprecate misleading functions PyEval_AcquireLock() and | Antoine Pitrou | 2011-01-15 | 2 | -0/+21 |
| | | | | | PyEval_ReleaseLock(). The thread-state aware APIs should be used instead. | ||||
| * | Reword and restructure the GIL API doc | Antoine Pitrou | 2011-01-15 | 1 | -152/+156 |
| | | |||||
| * | Add mention of how to switch interpreters | Antoine Pitrou | 2011-01-15 | 1 | -1/+3 |
| | | |||||
| * | Improve description of issues | Antoine Pitrou | 2011-01-15 | 1 | -7/+10 |
| | | |||||
| * | Restructure a bit | Antoine Pitrou | 2011-01-15 | 1 | -79/+100 |
| | | |||||
| * | Standard streams use file descriptors, not FILE pointers. | Antoine Pitrou | 2011-01-15 | 1 | -1/+1 |
| | | |||||
| * | Avoid ResourceWarnings in ccbench | Antoine Pitrou | 2011-01-15 | 1 | -12/+13 |
| | | |||||
| * | Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work ↵ | Antoine Pitrou | 2011-01-15 | 1 | -4/+7 |
| | | | | | | | with 3.2. (we need some tests for this) | ||||
| * | Issue #10912: Clarify the documentation of PyObject_RichCompareBool. Thanks ↵ | Eli Bendersky | 2011-01-15 | 1 | -0/+3 |
| | | | | | to Devin Jeanpierre for spotting the problem. | ||||
| * | Add self to mac platform area in maintainers.rst. | Ned Deily | 2011-01-15 | 1 | -1/+1 |
| | | |||||
| * | Remove spurious copy of Mac/IDLE/idlemain.py left over from | Ned Deily | 2011-01-15 | 1 | -30/+0 |
| | | | | | | conversion from Python 2 build process. The correct version is in Mac/IDLE/IDLE.app/Contents/Resources/ | ||||
| * | #10843: Update third-party library versions used in OS X 32-bit | Ned Deily | 2011-01-15 | 2 | -30/+44 |
| | | | | | | | installer builds: bzip2 1.0.6, readline 6.1.2, SQLite 3.7.4 (with FTS3/FTS4 and RTREE enabled), and ncursesw 5.5 (wide-char support enabled). | ||||
| * | #10843: Install the Tools directory on OS X in the applications | Ned Deily | 2011-01-15 | 2 | -0/+6 |
| | | | | | | Extras (/Applications/Python 3.n/Extras/) where the Demo directory had previous been installed. | ||||
| * | #10907: Update OS X installer build README to better reflect | Ned Deily | 2011-01-15 | 1 | -44/+113 |
| | | | | | current build practices. | ||||
| * | #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, | Ned Deily | 2011-01-15 | 5 | -26/+77 |
| | | | | | | rather than the currently problematic Apple-supplied one, when running with the 64-/32-bit installer variant. | ||||
| * | Issue #4953: add the author of the patch | Victor Stinner | 2011-01-14 | 2 | -1/+3 |
| | | |||||
| * | urllib doc: add versionchanged sections for parse_qs() and parse_qsl() | Victor Stinner | 2011-01-14 | 1 | -0/+6 |
| | | |||||
| * | cgi: use isinstance(x, list) instead of type(x) == type([]) | Victor Stinner | 2011-01-14 | 1 | -3/+3 |
| | | |||||
| * | Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not | Victor Stinner | 2011-01-14 | 3 | -79/+190 |
| | | | | | | as unicode, and accept binary files. Add encoding and errors attributes to cgi.FieldStorage. | ||||
| * | test_urlparse: add tests for encoding and errors arguments | Victor Stinner | 2011-01-14 | 1 | -0/+27 |
| | | |||||
| * | Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() | Victor Stinner | 2011-01-14 | 3 | -7/+31 |
| | | |||||
| * | Issue #10902: Fix reference to run* methods | Eli Bendersky | 2011-01-14 | 1 | -1/+1 |
| | | |||||
| * | Remove call to nonexisting function (relic from Python 2.x) under #ifdef ↵ | Eli Bendersky | 2011-01-14 | 1 | -1/+0 |
| | | | | | __INSURE__. Issue 9844 | ||||
| * | Issue #9268: Documented -m pickletools usage. | Alexander Belopolsky | 2011-01-13 | 1 | -0/+64 |
| | | | | | Also added a source code link. | ||||
| * | Issue 10899: Remove function type annotations from the stdlib | Raymond Hettinger | 2011-01-13 | 2 | -18/+24 |
| | | |||||
| * | Issue #10899: Move function type annotations into docstrings. | Raymond Hettinger | 2011-01-13 | 1 | -30/+36 |
| | | | | | | Note, the docstrings (for the most part) were already very thorough and included type information. | ||||
| * | Fix the example output of count(). | Georg Brandl | 2011-01-13 | 1 | -1/+1 |
| | | |||||
| * | Add semicolon for consistency. | Georg Brandl | 2011-01-13 | 1 | -1/+1 |
| | | |||||
| * | More PEP 8: no space around "=" in argument lists. | Georg Brandl | 2011-01-13 | 1 | -11/+10 |
| | | |||||
| * | plug reference leak | Benjamin Peterson | 2011-01-13 | 1 | -2/+4 |
| | | |||||
| * | Issue 10899: Remove function type annotations from the stdlib | Raymond Hettinger | 2011-01-13 | 1 | -1/+1 |
| | | |||||
| * | Issue 10899: Remove function type annotations from the stdlib | Raymond Hettinger | 2011-01-13 | 2 | -15/+15 |
| | | |||||
| * | Issue #10899: No function type annotations in the standard library. | Raymond Hettinger | 2011-01-12 | 2 | -31/+34 |
| | | | | | Removed function type annotations from _pyio.py. | ||||
| * | Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError) | Antoine Pitrou | 2011-01-12 | 1 | -25/+43 |
| | | |||||
| * | A better message again | Antoine Pitrou | 2011-01-12 | 1 | -1/+1 |
| | | |||||
| * | More informative skip message in @bigaddrspace | Antoine Pitrou | 2011-01-12 | 1 | -3/+7 |
| | | |||||
| * | Fix @bigmemtest when no limit is given by the user (oops) | Antoine Pitrou | 2011-01-12 | 1 | -1/+1 |
| | | |||||
| * | Make test skipping message nicer, and remove the rather useless "overhead" ↵ | Antoine Pitrou | 2011-01-12 | 1 | -20/+10 |
| | | | | | parameter. | ||||
| * | Remove the funky function annotation from numbers.py. | Raymond Hettinger | 2011-01-12 | 1 | -1/+1 |
| | | |||||
| * | Fix the expected memory use of utf-8 encoding. Also, release the | Antoine Pitrou | 2011-01-12 | 1 | -3/+7 |
| | | | | | one reference to a huge object even when an exception is raised. | ||||
| * | Remove function annotations that slipped into _abcoll. | Raymond Hettinger | 2011-01-12 | 1 | -4/+4 |
| | | | | | These are reserved for third-party use. | ||||
| * | use PyErr_SetString instead of PyErr_Format | Benjamin Peterson | 2011-01-12 | 1 | -2/+2 |
| | | |||||
