Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4b0c24a use 3-space indents. 03 February 2011, 22:14:58 UTC
8045d97 Add a HOWTO on how to port from Python 2 to Python 3. 03 February 2011, 22:01:54 UTC
6153604 Remove lots of spaces within exception message. 03 February 2011, 07:46:41 UTC
e951e91 Punctuation typos. 03 February 2011, 07:08:25 UTC
0446b21 Punctuation typo. 02 February 2011, 21:12:39 UTC
6d7e26e Get command-line doctest of Lib/decimal.py to work again. If tested as '__main__' instead 'decimal', the tracebacks would abbreviate 'decimal.Inexact' as 'Inexact', breaking the doctests. (Reviewed by Antoine.) 01 February 2011, 23:54:43 UTC
19cc9e1 Add a svn:ignore for PC/python3dll.obj 01 February 2011, 23:43:46 UTC
7b5011b Wording fix. 01 February 2011, 21:31:22 UTC
0ea622a Issue #8275: Fix passing of callback arguments with ctypes under Win64. Patch by Stan Mihai. Ok'ed by Georg. 31 January 2011, 21:08:57 UTC
bd0c897 #11083 typo: RuntimeException -> RuntimeError 31 January 2011, 19:35:02 UTC
f031356 Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. 31 January 2011, 19:27:55 UTC
6b449ba Post-release updates. 31 January 2011, 10:39:57 UTC
92acd67 Recommend use of the tracker during the RC phase or just before a beta. 31 January 2011, 06:34:47 UTC
9c2fc47 Fix minor grammar nits. Revert r88272 -- the examples are more readable with spacing. Add todos for difflib and logging. 31 January 2011, 06:14:48 UTC
e2ae807 Mention new parameter and attributes of the difflib.SequenceMatcher class added in 3.2 (issue 2986) 31 January 2011, 04:21:40 UTC
f30793a Fix PEP-8 violation in argparse usage example (similar examples in argparse.rst do follow PEP-8) 31 January 2011, 04:10:23 UTC
d7cde5d Fix some grammar and typos 31 January 2011, 04:05:52 UTC
ffaa692 Tagging release 3.2 rc 2. 30 January 2011, 14:05:04 UTC
d6e19c3 Bump version. 30 January 2011, 14:03:33 UTC
6ddc16b Update suspicious ignore file. 30 January 2011, 14:02:36 UTC
56632b4 Update pydoc topics. 30 January 2011, 14:00:32 UTC
0f6b47a #10680: fix mutually exclusive arguments in argument groups. 30 January 2011, 12:19:35 UTC
d2f3857 #10961: fix exception handling in new pydoc server code. Patch by Ron Adam, reviewed by Eric Araujo. 30 January 2011, 08:37:19 UTC
ce227e3 Clarify the status of get_string() and recommend using the binary API. 30 January 2011, 08:20:37 UTC
d163c2c #11069: fix the IDLE Stack Viewer, by not using "list" as a variable name. Original patch by Brian Curtin, reviewed by me. 30 January 2011, 08:16:07 UTC
994d380 Add entry for the mailbox fixups. 30 January 2011, 07:56:03 UTC
b7deff1 #9124: mailbox now accepts binary input and uses binary internally Although this patch contains API changes and is rather weighty for an RC phase, the mailbox module was essentially unusable without the patch since it would produce UnicodeErrors when handling non-ascii input at arbitrary and somewhat mysterious places, and any non-trivial amount of email processing will encounter messages with non-ascii bytes. The release manager approved the patch application. The changes allow binary input, and reject non-ASCII string input early with a useful message instead of failing mysteriously later. Binary is used internally for reading and writing the mailbox files. StringIO and Text file input are deprecated. Initial patch by Victor Stinner, validated and expanded by R. David Murray. 30 January 2011, 06:21:28 UTC
b02f7c0 List known build/install problems for OS X. 30 January 2011, 05:37:16 UTC
793ee1f Issue #10845: Improve compatibility between multiprocessing on Windows and package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl) 30 January 2011, 01:24:08 UTC
c7bb159 Markup nits. 30 January 2011, 01:10:07 UTC
6239974 Add section for http.client. Link to OS X build instructions. Add back issue references for datetime. 30 January 2011, 00:55:47 UTC
519c308 Typos. 30 January 2011, 00:39:00 UTC
ac4e58e Protect logging call against None argument (fixes #11045). Initial patch by Kelsey Hightower. Approved by Raymond. A test was non-trivial to write without calling the private function directly, so we moved that for later. 29 January 2011, 20:32:11 UTC
7dabf16 Issue #10939: Make Internaldate2tuple test more robust. 29 January 2011, 19:49:40 UTC
5c2d330 Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save commands. (with release manager approval for 3.2rc2) 29 January 2011, 19:10:26 UTC
e59e4c5 Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with the system-provided Python. Also, properly guard a new Python 3 only installer build step so that build-installer.py can stay compatible with the 2.7 version. (with release manager approval for 3.2rc2) 29 January 2011, 18:56:28 UTC
806c944 Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x, preventing a confusing hung appearance on OS X with the windows obscured. (with release manager approval for 3.2rc2) 29 January 2011, 18:43:56 UTC
7006393 Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items. 29 January 2011, 18:29:01 UTC
19e0a9e Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson for the report and the patch. Reviewed by Georg Brandl. 29 January 2011, 17:19:08 UTC
ac039ae fix reference to issue where the addition of select.PIPE_BUF was discussed 29 January 2011, 13:24:33 UTC
80f75e6 Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). Patch reviewed by Antoine Pitrou, okayed by Georg Brandl. 29 January 2011, 11:31:20 UTC
a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. Originial patch by haypo, reviewed by me, okayed by Georg. 29 January 2011, 11:15:35 UTC
08d4293 Add entry for str.format_map(). Add bullet list and reference to documentation section. 29 January 2011, 08:51:57 UTC
598b513 Added a placeholder for str.format_map, as discussed with Raymond. My prose is horrible, some cleanup is required. 28 January 2011, 20:23:25 UTC
e180d39 Issue 10573: revert unittest docs to first / second Minor internal change to unittest.TestCase.assertCountEqual Reviewed by R. David Murray 28 January 2011, 19:51:48 UTC
66c908e #11027: documented how to override SECTCRE 28 January 2011, 11:57:30 UTC
469271d More source links 27 January 2011, 20:38:46 UTC
1a90f9c Issue 11008: docs updated to show versionadded for dictConfig. 27 January 2011, 19:14:16 UTC
e6f0abf More typical sample invocation of tarfile. 27 January 2011, 07:34:45 UTC
712d2b4 Add missing attributions. 27 January 2011, 06:46:54 UTC
8d09cb2 Update todo list. 27 January 2011, 06:10:18 UTC
7626ef9 Add an entry for tarfile. 27 January 2011, 05:48:56 UTC
a199368 More source links. 27 January 2011, 01:20:32 UTC
8b5eb2f Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 conversion. (Patch reviewed by David Murray.) 27 January 2011, 00:06:54 UTC
528d9f6 Issue #11018: fix a test to not be a no-op in test_bz2. Found by Nadeem Vawda, reviewed by Brett. 26 January 2011, 23:29:28 UTC
7372a07 #11019: Make BytesGenerator handle Message with None body. Bug discovery and initial patch by Victor Stinner. 26 January 2011, 21:21:32 UTC
a63a312 Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a keyword-only argument. The preceding positional argument was deprecated, so it made no sense to add filter as a positional argument. (Patch reviewed by Brian Curtin and Anthony Long.) 26 January 2011, 20:34:14 UTC
e3b8f7c Markup nits. 26 January 2011, 19:36:13 UTC
bdd2d93 Revert r88197. I'll refix correctly once there is a test. 26 January 2011, 02:31:37 UTC
14eb4c3 Add a few imports to examples. 26 January 2011, 01:13:26 UTC
3a7ee3a Fix BytesGenerator._handle_text() if the message has no payload (None) 26 January 2011, 00:39:19 UTC
0c4cc55 fix import in email.message_from_binary_file() Parser => BytesParser 25 January 2011, 23:15:47 UTC
512d2cc Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing. 25 January 2011, 21:32:39 UTC
5543e81 Tighten the restrictions on the test_sys test which triggers a fatal error when run with tracing turned on. 25 January 2011, 18:26:35 UTC
cfad97b Fix the description of PIPE_BUF 25 January 2011, 17:24:57 UTC
da7be3e Fix the doc for PIPE_BUF 25 January 2011, 16:28:44 UTC
902f320 Typo. 25 January 2011, 08:01:01 UTC
da4a05d Add entries for select and site. 25 January 2011, 07:46:07 UTC
2f707c9 Add math.erfc and turtledemo. 25 January 2011, 06:58:01 UTC
f9b8a19 Typo. 25 January 2011, 05:53:27 UTC
2c63906 Nits. 25 January 2011, 02:38:59 UTC
a4cfb42 Add entry for the math module. 25 January 2011, 02:35:58 UTC
ad81f2b Ignore the gdb.py file under OS X. 25 January 2011, 00:56:18 UTC
d454249 another pretty crasher served up by pypy 25 January 2011, 00:00:28 UTC
f4f0e6c Add entry for io.BytesIO.getbuffer(). 24 January 2011, 22:14:42 UTC
122539e #10974: IDLE no longer crashes if its recent files list includes files with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2) 24 January 2011, 21:46:44 UTC
feac624 Issue #11000 ast.parse parses source, not just expressions. 24 January 2011, 21:36:03 UTC
b027011 Issue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker. 24 January 2011, 21:02:50 UTC
2a6ac15 Update last tix code example for 3.x, as already done for previous examples. 24 January 2011, 20:48:40 UTC
009a6bd Fix label syntax. 24 January 2011, 19:59:08 UTC
8e490de Typo fix. 24 January 2011, 19:53:18 UTC
7b1aae9 #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc. Original patch by Michal Nowikowski, with some additions and wording fixes by me. I changed the wording from 'Performs a stat system call' to 'Performs the equivalent of a stat system call', since on Windows there are no stat/lstat system calls involved. I also extended Michal's breakout of the attributes into a list to the other paragraphs, and rearranged the order of the paragraphs in the 'stat' docs to make it flow better and put it in what I think is a more logical/useful order. 24 January 2011, 19:34:58 UTC
a80ab10 Typos. 24 January 2011, 18:19:01 UTC
ead4975 Missing source links. 24 January 2011, 16:28:06 UTC
399bf7b Fix markup and add todo. 24 January 2011, 10:11:12 UTC
e7dfe74 Add entry for hash_info(). 24 January 2011, 09:17:24 UTC
9a236b0 Add section for urllib.parse. 24 January 2011, 09:01:27 UTC
a3b7a14 Add entry for the html module. 24 January 2011, 05:26:00 UTC
d0d59b1 Add entry for hashlib and expand the GC entry. 24 January 2011, 05:07:13 UTC
bf1d2bc Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin). 24 January 2011, 04:52:27 UTC
acff595 Add entries for dis, dbm, and ctypes. 24 January 2011, 01:51:49 UTC
50307b6 Add entries for array, asyncore, csv, compileall, and ast. 24 January 2011, 01:18:30 UTC
c3e8867 Skip a recursion depth check test when running under CPython and have a trace function set. Otherwise a Python fatal error about hitting an unrecoverable recursion depth gets triggered. Closes issue #10985. Code review by Georg Brandl. 23 January 2011, 23:06:05 UTC
6ef18f4 Fix typo. 23 January 2011, 21:33:36 UTC
971f483 minor clean-up. 23 January 2011, 21:32:18 UTC
cbc903b Add tracker references. 23 January 2011, 21:13:27 UTC
98b140c Add entry for reprlib. 23 January 2011, 21:05:46 UTC
e6d4c5b Issue #10987: Fix the recursion limit handling in the _pickle module. 23 January 2011, 17:12:25 UTC
0929b1f Add entry for shutil's archiving operations. 23 January 2011, 11:29:08 UTC
f2e439f Issue #10955: Fix typo in NEWS, cp497 => cp437 23 January 2011, 00:11:58 UTC
back to top