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

sort by:
Revision Author Date Message Commit Date
5fc850b Improved footnote for the %Y directive slightly. 10 January 2011, 23:31:51 UTC
085556a Improved description of %Y directive. 10 January 2011, 23:28:33 UTC
262cc7f Issue #10875: Update Regular Expression HOWTO; last bit. 10 January 2011, 23:13:21 UTC
95f1dfc Issue #9566: Fix pyparse.xmlparser.ParseFile() Fix readinst() if file.read(n) returns a bytes object longer than n: return -1 instead of the the buffer size to raise an exception. Simplify also the function code. 10 January 2011, 23:00:36 UTC
9971e00 Issue #2568: Removed bogus rationale for supporting tm_sec=61. 10 January 2011, 22:56:14 UTC
9a1383e #10820: Fix OS X framework installs to support version-specific scripts (implemented in #10679). 10 January 2011, 22:14:25 UTC
dc004a3 Removed time.ctime from the list of functions that take a time tuple argument 10 January 2011, 21:58:52 UTC
bd96b06 Added entries about removal of year 1900 limit. 10 January 2011, 21:55:34 UTC
aacfd4a Issue #10875: Update Regular Expression HOWTO; patch by 'SilentGhost'. 10 January 2011, 21:27:49 UTC
eb70b90 Misspelling. 10 January 2011, 21:26:49 UTC
05ce079 Missed two source links 10 January 2011, 21:16:07 UTC
4f707fd Separate source link from main text. 10 January 2011, 19:54:11 UTC
04da1e0 Fixed a footnote reference 10 January 2011, 19:14:38 UTC
de2e618 Fix typos. 10 January 2011, 05:40:57 UTC
1048094 Move source links to consistent location and remove wordy, big yellow boxes. 10 January 2011, 03:26:08 UTC
a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode if available. (at Georg's request) 09 January 2011, 20:38:15 UTC
a6c91f5 Add Ned Deily. 09 January 2011, 18:28:07 UTC
d7e81cc #10874: test_urllib2 shouldn't use `is` operator for comparing strings Patch by Adreas Stührk. 09 January 2011, 18:18:53 UTC
04536b0 #10871: "file" does not exist anymore in Python 3. Also adapt the reprs of opened file objects. 09 January 2011, 09:31:01 UTC
c900708 Wrap some long examples and signatures. 09 January 2011, 09:04:08 UTC
efb6902 Add missing line. 09 January 2011, 07:50:48 UTC
619e7ba #10869: do not visit root node twice in ast.increment_lineno(). 09 January 2011, 07:38:51 UTC
5b2d9dd #5871: protect against header injection attacks. This makes Header.encode throw a HeaderParseError if it winds up formatting a header such that a continuation line has no leading whitespace and looks like a header. Since Header accepts values containing newlines and preserves them (and this is by design), without this fix any program that took user input (say, a subject in a web form) and passed it to the email package as a header was vulnerable to header injection attacks. (As far as we know this has never been exploited.) Thanks to Jakub Wilk for reporting this vulnerability. 09 January 2011, 02:35:24 UTC
e3ee66f Issue #10357: Clarify what it means to be a mapping. 08 January 2011, 23:44:37 UTC
4ad934f zlib only works with bytes objects. 08 January 2011, 21:04:25 UTC
2997837 Fixed documentation to reflect recent changes for years < 1900. 08 January 2011, 20:47:21 UTC
3ec899f NEWS: merge #1777412 and #10827 entries 08 January 2011, 16:37:47 UTC
f7d019e Issue #1777412: document the change in the NEWS file 08 January 2011, 16:31:24 UTC
c08ea61 Markup fix 08 January 2011, 10:32:31 UTC
5d938cb Add EHOSTUNREACH ('No route to host') to the errnos trapped by transient_internet(). 08 January 2011, 10:28:11 UTC
83b1ab0 Issue 9717: Segregate and improve the documentation of "in-place" operators in the operator module. 08 January 2011, 10:26:53 UTC
160fd93 Fix test_ssl after r87849 08 January 2011, 10:23:29 UTC
67b212e Issue #10859: Make `contextlib.GeneratorContextManager` officially private by renaming it to `_GeneratorContextManager`. 08 January 2011, 09:55:31 UTC
d97b7b5 #10855: document close() semantics of wave objects. 08 January 2011, 09:45:43 UTC
5254e97 Issue 10533: Need example of using __missing__. 08 January 2011, 09:35:38 UTC
0ab10e4 Issue #10813: Small improvement to decimal money format recipe. 08 January 2011, 09:03:11 UTC
23f9fc3 Issue #10042: Fixed the total_ordering decorator to handle cross-type comparisons that could lead to infinite recursion. 08 January 2011, 07:01:56 UTC
06ec45e Issue #10864: limit year to [1; 9999] for strftime() on Solaris 08 January 2011, 03:35:36 UTC
f332abb test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.de 08 January 2011, 03:16:05 UTC
301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() The buildbots will tell us which platform does support or not negative years. 08 January 2011, 03:06:52 UTC
af5aee5 Issue #1777412: fix test_time for Mac OS X and OpenIndiana 08 January 2011, 02:46:33 UTC
7369132 Issue #1777412: test large years value for strftime('%Y') 08 January 2011, 02:00:24 UTC
73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 * With Visual Studio, year have to be in [1; 9999] * Add more tests on the year field 08 January 2011, 01:56:31 UTC
0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. 08 January 2011, 01:23:02 UTC
b8bb466 Issue #1777412: extended year range of strftime down to 1000. 08 January 2011, 00:13:34 UTC
9253214 #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. This applies only when generating strings from non-RFC compliant binary input; it makes the existing recoding behavior more consistent (ie: now no data is lost when recoding). 07 January 2011, 23:25:30 UTC
6f0022d Fix formatting of values with embedded newlines when rfc2047 encoding Before this patch if a value being encoded had an embedded newline, the line following the newline would have no leading whitespace, and the whitespace it did have was encoded into the word. Now the existing whitespace gets turned into a blank, the way it does in other header reformatting, and the _continuation_ws gets added at the beginning of the encoded line. 07 January 2011, 21:57:25 UTC
7088abd Revert r87821 which moved the source link to the wrong section (from the module intro covering the module to a section on thread imports). 07 January 2011, 21:54:18 UTC
3be412d Put NEWS entry in the right section. 07 January 2011, 21:47:02 UTC
b7fb2e2 Issue #8020: Avoid a crash where the small objects allocator would read non-Python managed memory while it is being modified by another thread. Patch by Matt Bandy. 07 January 2011, 21:43:59 UTC
1122fa2 Revert r87823 which moved the source link to the wrong section. 07 January 2011, 21:17:56 UTC
32e8fea Update the digest of PEP 3333 based on comments for Phillip Eby. 07 January 2011, 21:04:30 UTC
2f2a9f7 Fix indent. 07 January 2011, 20:58:25 UTC
fc90213 Combine the two seealso sections. 07 January 2011, 20:33:09 UTC
c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime function will now format any year when time.accept2dyear is false and will accept years >= 1000 otherwise. The year range accepted by time.mktime and time.strftime is still system dependent, but time.mktime will now accept full range supported by the OS. Conversion of 2-digit years to 4-digit is deprecated. 07 January 2011, 19:59:19 UTC
696efdd Mention multiprocessing.Queue in the queue docs 07 January 2011, 19:16:12 UTC
4b512f7 Group seealsos 07 January 2011, 19:01:48 UTC
60bcc54 Put those "seealso"s together 07 January 2011, 18:58:21 UTC
034c753 Issue #10841: don't translate newlines for pgen 07 January 2011, 18:56:19 UTC
89e3436 Issue #10841: set binary mode on files; the parser translates newlines On Windows, set the binary mode on stdin, stdout, stderr and all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python parser translates newlines (\r\n => \n). 07 January 2011, 18:47:22 UTC
bdde506 Put those source links together 07 January 2011, 18:43:14 UTC
1bdd6fd atexit.py doesn't exist 07 January 2011, 18:42:21 UTC
39e352c Put link to source at the end. There's nothing edificating in threading.py. 07 January 2011, 18:33:07 UTC
fb6fd5d #10856: document (Base)Exception.args better. 07 January 2011, 18:28:45 UTC
7603fa0 Undo an accidental commit in r87812. 06 January 2011, 23:08:16 UTC
63eef1e Get --coverage to be an acceptable flag for test.regrtest again. 06 January 2011, 22:32:41 UTC
610e544 Further simplify gettmarg() 06 January 2011, 21:57:06 UTC
388af4b Typo. 06 January 2011, 20:55:29 UTC
189c091 Drop bf_getbuffer/bf_releasebuffer from stable ABI, see #10181. 06 January 2011, 19:28:31 UTC
a572476 #10846: fix typo. 06 January 2011, 19:28:18 UTC
b30111f Support comment lines and missing indices in typeslots.h. 06 January 2011, 19:26:21 UTC
c83bc3c Remove buffer API from stable ABI for now, see #10181. 06 January 2011, 19:15:47 UTC
e85da7a Issue #7858: Raise an error properly when os.utime() fails under Windows on an existing file. (this does not seem to be easily testable) 06 January 2011, 18:25:55 UTC
b715fac Issue #3839: wsgiref should not override a Content-Length header set by the application. Initial patch by Clovis Fabricio. 06 January 2011, 17:17:04 UTC
f1397ad Issue #10655: Fix the build on PowerPC on Linux with GCC when building with timestamp profiling (--with-tsc): the preprocessor test for the PowerPC support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. 06 January 2011, 17:01:36 UTC
ecbb8dc Use PyOS_snprintf for better portability. 06 January 2011, 16:45:25 UTC
0034281 Elaborate about the GIL. 06 January 2011, 16:31:28 UTC
f8dc9ca #10844: update copyright years in Mac plists. 06 January 2011, 10:05:26 UTC
f60fd00 Add acks where acks are due. 06 January 2011, 09:25:27 UTC
b30f330 Fix various issues (mostly Python 2 relics) found by Jacques Ducasse. 06 January 2011, 09:23:56 UTC
77041b2 itertools, operator and functools are not really "numeric" modules; move them into their own "functional" chapter. 06 January 2011, 09:23:19 UTC
e98628d Remove doc for nonexisting parameter. 06 January 2011, 09:15:45 UTC
ca023ca Issue #1677694: Refactor and improve test_timeout. Original patch by Björn Lindqvist. 06 January 2011, 09:05:22 UTC
d53dfa3 Issue #10840: make it explicit that "s*" and friends provide contiguous memory. 06 January 2011, 07:16:31 UTC
7beae8a Issue 10825: Minor updates to the test suite. 06 January 2011, 05:34:17 UTC
90a4b31 Nits 06 January 2011, 02:08:30 UTC
3df4621 Add PEP 3333 to whatsnew. 06 January 2011, 02:01:26 UTC
4bd8172 Issue #10492: bdb.Bdb.run() only traces the execution of the code And not the compilation (if the input is a string). 06 January 2011, 00:49:38 UTC
457ab06 test_atexit: fix code saving/restoring stdout and stderr That's why I prefer a single instruction per line :-) 05 January 2011, 23:47:00 UTC
73efd62 test_imaplib: reap_server() closes the server when done Fix a ResourceWarning(unclosed socket). Patch written by Nadeem Vawda. 05 January 2011, 23:01:38 UTC
33e649c imaplib: IMAP4 constructor closes the socket on error Fix a ResourceWarning(unclosed socket) if an exception is raised in the constructor after the creation of the socket. Patch written by Nadeem Vawda. 05 January 2011, 23:01:37 UTC
a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 - removed unnecessary struct_time to tuple conversion - added more unit tests (See issue #10827 for discussion.) 05 January 2011, 23:00:47 UTC
e40808a Add more porting notes. 05 January 2011, 23:00:00 UTC
dc51a3c Fix mistake in NEWS 05 January 2011, 22:43:26 UTC
2a5fb47 Remove mention of codes pending further discussion on transform()/untransform(). 05 January 2011, 22:41:23 UTC
2169ee2 RC1 updates to whatsnew 05 January 2011, 22:27:49 UTC
be41a48 On Py3k, -tt and -3 are no-op and unsupported respectively. 05 January 2011, 21:47:47 UTC
dfad7e3 Overhaul the documentation about socket timeouts. 05 January 2011, 21:17:36 UTC
600232b Issue #7995: When calling accept() on a socket with a timeout, the returned socket is now always non-blocking, regardless of the operating system. 05 January 2011, 21:03:42 UTC
7d96771 Update tests and whatsnew for the 'quiet' flag 05 January 2011, 20:24:08 UTC
back to top