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

sort by:
Revision Author Date Message Commit Date
d3d235f backport patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieve 26 August 2005, 08:51:39 UTC
0acd7e0 SF bug #1072182: bad arg type to isspace in struct module 26 August 2005, 08:42:13 UTC
32c2ed5 backport patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows 26 August 2005, 08:33:28 UTC
66e75ac Disallow keyword arguments for type constructors that don't use them (fixes #1119418). 26 August 2005, 06:43:16 UTC
a74a655 backport bug [ 1248199 ] shelve .sync operation not documented 25 August 2005, 22:40:21 UTC
296681e backport bug [ 1262320 ] minidom.py alternate newl support is broken 25 August 2005, 22:14:21 UTC
900a84a backport bug [ 1262320 ] minidom.py alternate newl support is broken 25 August 2005, 22:02:49 UTC
fa39d08 backport bug [ 1261229 ] __new__ is class method 25 August 2005, 21:56:49 UTC
0b5fb78 Backport fixes for bugs #1191043 and #1215928. 25 August 2005, 13:10:58 UTC
dedff27 Make IDNA return an empty string when the input is empty. Fixes #1163178. 25 August 2005, 11:04:04 UTC
668c5f0 Patch #1160164: Use ReleaseItanium for zlib build. 25 August 2005, 07:17:37 UTC
6eee2fe Backport bug #735248: fix urllib2.parse_http_list(). 24 August 2005, 22:20:46 UTC
1694a59 Backport bug #1016563: Bug in urllib2 proxy auth 24 August 2005, 20:30:35 UTC
47826f1 Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494. 24 August 2005, 14:55:42 UTC
ea3c6f0 Forward UnicodeDecodeError into SyntaxError for source encoding errors. 24 August 2005, 08:39:46 UTC
674c188 Return complete lines from codec stream readers even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484. 24 August 2005, 07:38:36 UTC
00ccbb6 backport bug [ 1192315 ] 'clear -1' in pdb 24 August 2005, 07:36:21 UTC
42cd573 backport bug [ 1190204 ] 3.29 site is confusing re site-packages on Windows 24 August 2005, 07:31:29 UTC
e591e04 backport bug [ 1193849 ] os.path.expanduser documentation wrt. empty $HOME 24 August 2005, 07:27:00 UTC
a6161e4 backport bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix 24 August 2005, 07:17:35 UTC
98fa1ca SF bug #1100368: Wrong "type()" syntax in docs Docs were missing the name/bases/dict form of type(). (Much of the wording contributed by Steven Bethard.) 24 August 2005, 07:07:44 UTC
f9189d0 Revert previous checkin. 24 August 2005, 06:44:56 UTC
df9c2c2 Patch #1262036: Make tarfile name absolute. Fixes #1257255. 24 August 2005, 06:07:17 UTC
6f9e3ca Backport 1.74 24 August 2005, 04:47:05 UTC
d2b7091 SF bug #1168135: Python 2.5a0 Tutorial errors and observations (Contributed by Michael R Bax.) 23 August 2005, 18:03:33 UTC
61e7ce8 - Mac line endings were incorrect when pasting code from some browsers when using X11 and the Fink distribution. Python Bug 1263656. Modified Files: Tag: release24-maint NEWS.txt ScriptBinding.py 23 August 2005, 17:38:56 UTC
08be9dc SF bug #1168135: Python 2.5a0 Tutorial errors and observations (Contributed by Michael R Bax.) 23 August 2005, 15:01:43 UTC
0af7f64 ord() documentation update; this is what remains applicable from SF patch #1057588; other changes make the rest of the patch out of date or otherwise unnecessary (backported from trunk revision 1.188) 23 August 2005, 04:35:22 UTC
d6f14ed add note about "markupbase" not being intended for direct use (closes SF bug #736659, patch #901369; backport of Lib/markupbase.py 1.11) 23 August 2005, 04:08:12 UTC
3d41e9a backport bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation 22 August 2005, 19:35:24 UTC
f5b8d44 backport bug #1266283: add lexists to os.path.__all__ 22 August 2005, 18:07:04 UTC
f8200ff SF bug #1168135: Python 2.5a0 Tutorial errors and observations (Contributed by Michael R Bax.) 21 August 2005, 12:36:21 UTC
7290f01 Empty sets and frozensets are also false. 21 August 2005, 12:23:06 UTC
e723939 SF bug #1121416: zip incorrectly and incompletely documented sequences ==> iterables 21 August 2005, 11:59:04 UTC
d4a439c SF bug #1249837: container methods raise KeyError not IndexError Minor clarification. 21 August 2005, 11:27:35 UTC
9314d32 SF bug #1242657: list(obj) can swallow KeyboardInterrupt Fix over-aggressive PyErr_Clear(). The same code fragment appears in various guises in list.extend(), map(), filter(), zip(), and internally in PySequence_Tuple(). 21 August 2005, 11:09:58 UTC
8c86f88 Mention explicitly that False is considered false. 21 August 2005, 09:41:48 UTC
aea3317 Typo fix 18 August 2005, 21:53:19 UTC
9085870 Backport checkin: Fix typo (fixes SF bug #1263086). 18 August 2005, 19:48:24 UTC
aaf07eb Add news about SF bug # 900092 fix. 15 August 2005, 17:35:43 UTC
190a336 Fix for SF bug # 900092, hotshot.stats.load assertion failure. This patch restores the tracing of a 'return' event for exceptions that cause a function to exit. Also, update the unit test. I will port to Python 2.5. 15 August 2005, 17:32:56 UTC
ccb5e4d Complete backport of #1172785 fix. 13 August 2005, 09:06:24 UTC
ab29419 Teach set modules to correctly compute s-=s and s^=s as the empty set. 13 August 2005, 02:28:54 UTC
787b4c5 * SF bug #1257731: Fix logic in set.__contains__(), set.remove(), and set.discard for handling keys that both inherite from set and define their own __hash__() function. * Fixed O(n) performance issue with set.pop() which should have been an O(1) process. 12 August 2005, 23:47:50 UTC
7297ba0 Document 'istext' parameter 12 August 2005, 14:08:10 UTC
0f01c2d Patch #1239112: Correct LINKCC C++ test. Fixes #1189330. 07 August 2005, 21:08:54 UTC
8cd0bad Patch #827386: Support absolute source paths in msvccompiler.py. 07 August 2005, 20:50:37 UTC
5656698 backport patch [ 1252706 ] poplib list() docstring fix (and docs too) 05 August 2005, 21:02:43 UTC
16bb9c9 backport bug [ 1250306 ] incorrect description of range function 03 August 2005, 07:18:04 UTC
2984d9b backport [ 1243192 ] Incorrect documentation of re.UNICODE 02 August 2005, 10:30:08 UTC
1987607 add support for svn: and svn+ssh: URL schemes to urlparse (backported from trunk urlparse.py 1.48, test_urlparse.py 1.15) 29 July 2005, 15:57:59 UTC
64da727 (Backport) Fix a problem in Tkinter introduced by SF patch #869468 (checked in as 1.179): delete bogus __hasattr__ and __delattr__ methods on class Tk that were breaking Tkdnd. 26 July 2005, 23:59:58 UTC
a9abcfa Upgrade Windows build to zlib 1.2.3 (a security fix) 26 July 2005, 02:35:39 UTC
022c6e5 That was one too much. 22 July 2005, 21:52:33 UTC
87494a5 Fix all wrong instances of "it's". 22 July 2005, 21:48:52 UTC
fe1fadf [ 1243288 ] Misuse of "it's" 22 July 2005, 19:48:03 UTC
95d632d [ 1243081 ] repair typos 22 July 2005, 18:40:02 UTC
c0c8bb3 SF #1204347: typo fix. 22 July 2005, 01:54:54 UTC
ba72589 Backport checkin: Make attributes and local variables in the StreamReader str objects instead of unicode objects, so that codecs that do a str->str decoding won't promote the result to unicode. This fixes SF bug #1241507. 20 July 2005, 22:52:09 UTC
31be0ff add information about alternate implementations, noting that documentation for the implementation should be consulted (thanks to Evelyn Mitchell for suggesting this; backported from trunk rev 1.16) 20 July 2005, 04:33:49 UTC
3ccd18e Backport: fix cleanup DECREF logic in builtin_filter function. 19 July 2005, 22:20:44 UTC
eb0b029 added news entry for previous checkin 18 July 2005, 08:53:40 UTC
062f186 backport bug [ 755617 ] os module: Need a better description of "mode" 18 July 2005, 08:17:08 UTC
987f728 backport bug [ 850238 ] unclear documentation/missing command? 18 July 2005, 08:04:22 UTC
3227601 backport bug [ 957505 ] SocketServer module documentation misleading 18 July 2005, 07:38:49 UTC
7f94414 backporting fix by tim_one: """ SF bug #1238681: freed pointer is used in longobject.c:long_pow(). In addition, long_pow() skipped a necessary (albeit extremely unlikely to trigger) error check when converting an int modulus to long. Alas, I was unable to write a test case that crashed due to either cause. """ 18 July 2005, 07:24:37 UTC
b454ea9 backport bug [ 1021621 ] use first_name, not first, in code samples 17 July 2005, 21:19:44 UTC
9e9452f bug [ 872769 ] os.access() documentation should stress race conditions 17 July 2005, 21:10:07 UTC
6912a6c backport [ 912943 ] 7.5.6 Thread Objects is too vague 17 July 2005, 21:00:31 UTC
c10be80 backport Bug #1015140: disambiguated the term "article id" in nntplib docs and docstrings to either "article number" or "message id". 17 July 2005, 20:26:33 UTC
ea25784 backport bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated 17 July 2005, 20:05:26 UTC
3cbab93 use macro 17 July 2005, 15:35:41 UTC
f934f50 backport 17 July 2005, 11:48:54 UTC
a6f5614 Backport checkin: Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file with a PEP 263 encoding declaration results in long decoded line. 12 July 2005, 21:58:38 UTC
5f421a7 Oops. 12 July 2005, 13:20:56 UTC
e913bf9 backport bug [ 1232768 ] Mistakes in online docs under "5.3 Pure Embedding" 12 July 2005, 13:18:04 UTC
070bba5 backport bug [ 1235266 ] debug info file descriptor of tarfile is inconsistent 12 July 2005, 07:28:25 UTC
b3d5871 Backport: SF bug 1185883: PyObject_Realloc can't safely take over a block currently managed by C, because it's possible for the block to be smaller than the new requested size, and at the end of allocated VM. Trying to copy over nbytes bytes to a Python small-object block can segfault then, and there's no portable way to avoid this (we would have to know how many bytes starting at p are addressable, and std C has no means to determine that). 11 July 2005, 05:57:11 UTC
6108583 bug 1234979 addition 09 July 2005, 15:27:05 UTC
412d5fa backport bug [ 1234979 ] Lock.acquire treats only 1 as True 08 July 2005, 22:25:17 UTC
b7f086f backport bug [ 969757 ] function and method objects confounded in Tutorial 08 July 2005, 21:36:42 UTC
afe5e77 backport bug #1177468: don't cache /dev/urandom file descriptor in os.urandom 04 July 2005, 17:16:53 UTC
78903db Revert patch for 1162912. 04 July 2005, 14:18:20 UTC
502d059 backport bug [ 1162912 ] typesseq-mutable lacks note on combined key/cmp usage 03 July 2005, 20:22:13 UTC
c3e6eba backport doctest for weakref examples 02 July 2005, 19:09:42 UTC
0e07707 backport patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror) 02 July 2005, 18:38:12 UTC
6259594 backport bug [ 1228904 ] weakref example broken 02 July 2005, 10:44:38 UTC
ea044d1 backport patch [ 1230615 ] Patch for (Doc) #1168746 (frame.f_exc_*) backport bug [ 1204734 ] incorrect description of __getattribute__ 02 July 2005, 10:28:29 UTC
5c3f9a4 Cross reference the set built-ins with the sets module. 01 July 2005, 23:25:27 UTC
e6816d2 Provide a comparison to the builtin set types. 01 July 2005, 23:01:46 UTC
e94060f More info on rounding modes. Add sections for floating point notes. 01 July 2005, 16:56:53 UTC
f7955af Note that file objects are iterable. 28 June 2005, 00:18:10 UTC
85ca29a * Show the keyword argument form of dict(). * Note that dict works with the "in" keyword. 27 June 2005, 23:38:47 UTC
f9a193a add note that os.EX_* constants are subject to availability on the host platform 27 June 2005, 23:22:22 UTC
21cea61 - Bug #839151: Fix an attempt to access sys.argv in the warnings module though this can be missing in embedded interpreters 26 June 2005, 22:55:05 UTC
893426b backport bug [ 839151 ] attempt to access sys.argv when it doesn't exist 26 June 2005, 22:53:43 UTC
0e65dd4 backport bug [ 1172785 ] doctest.script_from_examples() result sometimes un-exec-able 26 June 2005, 22:23:44 UTC
9310ffc - Bug #1155638: Fix a bug which affected HTTP 0.9 responses in httplib. 26 June 2005, 22:09:12 UTC
59c9be2 backport bug [ 1155638 ] self.length shield exception in httplib 26 June 2005, 22:06:56 UTC
7ddd42a Backport: Prevent creating a HTML link to file://?/ 26 June 2005, 21:59:34 UTC
back to top