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

sort by:
Revision Author Date Message Commit Date
3c8f5eb [Bug #1170422] Use correct option name 07 June 2005, 19:05:06 UTC
b1c29f3 Bug #1184380: extending&embedding example broken 05 June 2005, 10:57:00 UTC
9610437 Bug #1210001: typo in email docs 04 June 2005, 10:00:18 UTC
de09e95 Backport bug #1196315: fix weakref.WeakValueDictionary constructor. 04 June 2005, 09:20:12 UTC
bf07710 Backport bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. 03 June 2005, 19:45:53 UTC
c5d8c7b backport of [ 1197218 ] test_locale fix on modern linux On more modern linuxes (and probably others) straight 'en_US' isn't a valid locale. Make the code try a couple of alternates. 03 June 2005, 16:01:29 UTC
bab518b Backport bug #1213894: os.path.realpath didn't resolve symlinks that were the first component of the path. 03 June 2005, 14:31:55 UTC
d855c58 fix int.__divmod__.__doc__ 03 June 2005, 14:13:47 UTC
5298ade whitespace normalisation 03 June 2005, 14:10:50 UTC
90014d6 fix exceptions.TabError. _Please_ run test suite before checking in. 03 June 2005, 14:02:48 UTC
175886b [Bug #1209880] Describe only the True/False return values from lock.acquire() 02 June 2005, 17:01:08 UTC
31cd804 [Bug #1193001] Make the notation section use the same productionlist env. as other grammar rules 02 June 2005, 13:52:07 UTC
6ed5f30 [Bug #1177831] Fix (?(id)yes|no) for a group other than the first one, and add a test case 02 June 2005, 13:40:12 UTC
270dfd8 [Bug #1152762] Ensure _end_of_line() returns an x-coordinate that's within the text box 02 June 2005, 00:11:55 UTC
e3fd1be [Bug #1105706] Use correct name for constant 01 June 2005, 23:32:31 UTC
ccafe11 [Bug #1123268] Fix typo 01 June 2005, 23:22:39 UTC
52f2cb0 [Bug #1194249] Fix duplicate assignment in example code 01 June 2005, 15:27:26 UTC
1147014 SF bug #1202395: Description of string.lstrip() needs improvement Clarify the role of the chars argument in the strip() methods. 31 May 2005, 10:28:07 UTC
6a92af4 Backport fix to decorator grammar update. 27 May 2005, 11:23:44 UTC
b8d92d9 SF bug #1209671: dict.popitem documentation should mention empty dict case 27 May 2005, 10:45:14 UTC
29b89d7 fix description of the input range of unichr() (closes SF bug #1120777) 25 May 2005, 05:42:51 UTC
78c85ae update documentation on what constitutes a line in a source file (closes SF bug #1167922) 25 May 2005, 05:30:36 UTC
2b2bac8 SF bug #1201807: Glossary listing bug 14 May 2005, 17:20:25 UTC
d5c76cb backport 12 May 2005, 13:45:11 UTC
c3dd49c backport from head 12 May 2005, 13:43:40 UTC
7160342 SF bug #1193890: calendar.weekheader not found in __all__ 10 May 2005, 03:22:21 UTC
53fa7ee Fix a docstring with mismatched opening and closing quotes. Backport of fix for bug #1192777. 30 April 2005, 05:51:59 UTC
72c3114 SF bug #1190451: 6.9 First sentence is confusing * Fixed incorrect wording: expression->exception * Noted the specific exception reported by "raise" when the is nothing to re-raise. * Eliminated several instances of "e.g." as recommended in the style guide. 28 April 2005, 07:19:39 UTC
61a0dfd Backport 1.270 28 April 2005, 00:21:16 UTC
d38f730 Fix typo. 26 April 2005, 05:20:03 UTC
14ef205 Backport my recent fix (rev. 2.40 of Python/pystate.c): Fix: [ 1176893 ] Readline segfault by unsilly-ing PyGILState_Release(). Backport candidate. 24 April 2005, 19:32:34 UTC
4d3fec6 Backport checkin (and the appropriate fix to the test): If the data read from the bytestream in readline() ends in a '\r' read one more byte, even if the user has passed a size parameter. This extra byte shouldn't cause a buffer overflow in the tokenizer. The original plan was to return a line ending in '\r', which might be recognizable as a complete line and skip any '\n' that was read afterwards. Unfortunately this didn't work, as the tokenizer only recognizes '\n' as line ends, which in turn lead to joined lines and SyntaxErrors, so this special treatment of a split '\r\n' has been dropped. (It can only happen with a temporarily exhausted bytestream now anyway.) Fixes parts of SF bugs #1163244 and #1175396. 21 April 2005, 21:53:43 UTC
21287ee Correct swapped descriptions of empty string splits. 19 April 2005, 04:31:38 UTC
2f44827 Backport: Updated to work with current Python docs setup, and added a minimal README. 17 April 2005, 21:31:58 UTC
1304d06 This commit was manufactured by cvs2svn to create branch 'release24-maint'. 17 April 2005, 21:31:58 UTC
9e4b2e7 SF bug #1183742: PyDict_Copy() can return non-NULL value on error 15 April 2005, 16:07:09 UTC
9499857 Backport relevant part of checkin: SF patch #1180062 by George Yoshida: (Doc/lib/libfunctional.tex: "in an new object" should read "in a new object") Doc/lib/libsubprocess.tex: argument name is wrong; comma is missing 14 April 2005, 20:23:39 UTC
1dbdec2 get_method() returns a method name, not take it as an argument (backported from trunk revision 1.22) 13 April 2005, 01:12:21 UTC
54ef1f9 SF bug #1180392: StringIO's docs should mention overwriting of initial value * Added a note that the initial file position is zero even if the object is freshly initialized. 11 April 2005, 01:04:32 UTC
d23b387 SF bug #1179957: Missing def'n of equality for set element 10 April 2005, 17:36:26 UTC
5eff1ec SF patch 1179503: fix typos in rpc.py 10 April 2005, 16:23:49 UTC
52cba65 Backport my recent raw_input() vs no threads build vs SIGINT argh: In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, because (essentially) I didn't realise that PY_BEGIN/END_ALLOW_THREADS actually expanded to nothing under a no-threads build, so if you somehow NULLed out the threadstate (e.g. by calling PyThread_SaveThread) it would stay NULLed when you return to Python. Argh! 07 April 2005, 10:19:47 UTC
b3509db SF bug #1178269 Clarify when isMappingType/isSequenceType is True. 07 April 2005, 05:37:47 UTC
6845406 SF bug #1178255: 256 should read 255 in operator module docs 07 April 2005, 04:39:35 UTC
67e4ecd Backport checkin: Fix for SF bug #1175396: readline() will now read one more character, if the last character read is "\r" (and size is None, i.e. we're allowed to call read() multiple times), so that we can return the correct line ending (this additional character might be a "\n"). If the stream is temporarily exhausted, we might return the wrong line ending (if the last character read is "\r" and the next one (after the byte stream provides more data) is "\n", but at least the atcr member ensures that we get the correct number of lines (i.e. this "\n" will not be treated as another line ending). 04 April 2005, 21:56:28 UTC
6ca93ed Backport from 1.27: Fix testcase for 64bit BSD systems: long is 8 bytes for those systems so there's no need to pad after off_t members. And a small typo fix. 04 April 2005, 15:28:18 UTC
e888098 Corrected SMTPHandler docs and added info about threadName attribute of LogRecord 31 March 2005, 20:23:04 UTC
6721a34 Added optional encoding argument to File based handlers and improved error handling for SysLogHandler 31 March 2005, 20:12:55 UTC
2d6fe25 Minor changes to imports 31 March 2005, 20:11:45 UTC
d7937f0 Misc. changes 31 March 2005, 20:10:38 UTC
ddbcf1a (This is only relevant to the MacPython binary release process) Set the Python version to 2.4 in the postflight script used when building Mac OS X installer distributions. Previously it was set to 2.3, so it wouldn't build a working installer. 31 March 2005, 17:38:00 UTC
9bd2b50 Backport checkin: Since PyPI only accepts UTF-8 encoded data now, make sure that the data is properly encoded and include the encoding in the Content-Type header. 31 March 2005, 14:16:30 UTC
5fb9601 I meant to check this in with the last check in (CVS disturbs me sometimes) 31 March 2005, 10:28:30 UTC
21f8987 Backport: Fix for rather inaccurately titled bug [ 1165306 ] Property access with decorator makes interpreter crash Don't allow the creation of unbound methods with NULL im_class, because attempting to call such crashes. Backport candidate. 31 March 2005, 10:22:43 UTC
59f9bea Backport: Fixes for [ 1166660 ] The readline module can cause python to segfault It seems to me that the code I'm rewriting here attempted to call any user-supplied hook functions using the thread state of the thread that called the hook-setting function, as opposed to that of the thread that is currently executing. This doesn't work, in general. Fix this by using the PyGILState API (It wouldn't be that hard to define a dummy version of said API when #ifndef WITH_THREAD, would it?). Also, check the conversion to integer of the return value of a hook function for errors (this problem was mentioned in the ipython bug report linked to in the above bug). 31 March 2005, 10:20:34 UTC
4cf2704 SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. 31 March 2005, 04:07:55 UTC
b7f4c2d This commit was manufactured by cvs2svn to create tag 'r241'. 30 March 2005, 03:01:43 UTC
11cc947 *** empty log message *** 30 March 2005, 03:01:43 UTC
bde9118 prepare for Python 2.4.1 final 29 March 2005, 15:57:11 UTC
d2993b4 updates to NEWS 29 March 2005, 12:38:37 UTC
e335754 backport of 1.122 SF patch 1167316: doctest.py fails self-test if run directly. 29 March 2005, 12:35:54 UTC
92da66a 2.4.1 preparations. 29 March 2005, 12:33:34 UTC
4d381b1 Move exception finalisation later in the shutdown process - this fixes the crash seen in bug #1165761 29 March 2005, 12:32:50 UTC
df07843 patch [1171767] - Darwin 8's headers disable functionality when POSIX is enabled. This prevents the toolbox glue, all of Carbon, and various other non-POSIX features from compiling. The POSIX symbols are still used by default, so turning off the #define doesn't hurt. Additionally, linker flags have changed for Darwin 8, and are different for Darwin 8/gcc4 (default) and Darwin 8/gcc3.3. Approved by Anthony 28 March 2005, 23:23:34 UTC
2513acf Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460. 28 March 2005, 15:29:29 UTC
465499a Add 0 to _POSIX_SEMAPHORES. 28 March 2005, 12:36:19 UTC
92d3950 2.4.1 buildno 28 March 2005, 09:04:20 UTC
d2dd017 SF #1169212: fix silly typo in explaining AFMT macros: U16 is unsigned and S16 is signed. Duh. Clarify surrounding text a bit and refer to OSS docs. 28 March 2005, 02:32:41 UTC
ec113af SF patch #1171417: bug fix for islice() in docs 27 March 2005, 20:16:49 UTC
680db01 - Fixed decimal operator and comparison methods to return NotImplemented instead of raising a TypeError when interacting with other types. Allows other classes to successfully implement __radd__ style methods. 27 March 2005, 10:55:27 UTC
3589d81 correct ontosys url - closes 1167329 21 March 2005, 19:40:03 UTC
b08dfd2 fix two typos in python(1) 20 March 2005, 14:18:04 UTC
c4e4e56 SF #1086675: restore "Extending optparse" section (which was dropped in Python 2.4). 19 March 2005, 17:15:03 UTC
e4c50ee Regenerate from Optik reST source to ensure CVS Id tags are up-to-date. 19 March 2005, 17:05:48 UTC
bf57f15 List all option attributes (closes SF #993601). 19 March 2005, 17:04:33 UTC
58ceb16 Beef up optparse reference docs -- now much closer to documenting the full API of Optik 1.5a2 (which is what's included with Python 2.4.x). Closes SF #1099324, partially addresses SF #993601. 19 March 2005, 16:28:37 UTC
19a90e6 Fix typo. 18 March 2005, 10:59:04 UTC
8b050af This commit was manufactured by cvs2svn to create tag 'r241c2'. 17 March 2005, 03:06:56 UTC
efd4733 2.4.1c2 17 March 2005, 03:06:56 UTC
0823141 update patchlevel 16 March 2005, 23:43:21 UTC
905e912 2.4.1rc2 setup 16 March 2005, 14:34:23 UTC
11da5d5 Patch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean no support for posix semaphores. 16 March 2005, 04:13:29 UTC
3a3f9cc Decimal special values did not hash properly. 15 March 2005, 23:36:19 UTC
3b0dad0 Reuse componentids for *.dll across minor releases. Indicate to the user when this is an upgrade installation. Make CHM file non-advertised. 15 March 2005, 00:37:45 UTC
5986a01 Configure bug reporting address. 14 March 2005, 21:24:51 UTC
2a20d4b Backport checkin: Add default value for "whence" argument. 14 March 2005, 19:26:47 UTC
96aeafb Backport checkin: Reset internal buffers when seek() is called. This fixes SF bug #1156259. 14 March 2005, 19:20:19 UTC
616ac23 Add more UUIDs. Update custom actions for Itanium 14 March 2005, 17:17:04 UTC
d84b9d3 Backport of change to os.access to encode Unicode file names with the file system encoding. 13 March 2005, 22:18:26 UTC
d4f78f3 Patch #1159931: a test case for the buggy cases fixed by the last checkin. 12 March 2005, 16:48:50 UTC
d86254b Backport of patch #1159931/bug #1143895: inspect.getsource failed when functions, etc., had comments after the colon, and some other cases. This patch take a simpler approach that doesn't rely on looking for a ':'. Test cases are not backported, as test_inspect.py has been rewritten using unittest on the trunk. Thanks Simon Percivall! 12 March 2005, 16:38:39 UTC
e3fa061 Fix test_socket's test for socket.getfqdn() to also accept the result from socket.gethostname() as a valid return value. Also clarified the docs as they were a little hazy on the subject matter. 12 March 2005, 06:15:56 UTC
c13c040 Bug #1160802: Can't build Zope on Windows w/ 2.4.1c1. MSVCCompiler.initialize(): set self.initialized to True, as suggested by AMK. Else we keep growing the PATH endlessly, with each new C extension built, until putenv() complains. This doesn't appear to be an issue on the HEAD (MSVCCompiler initializes itself via __init__() on the HEAD). Also added a "2.4.1c2" section to NEWS. Not meant to imply that Anthony will do a 2.4.1c2 release, just needed to a place to put the news about the MSVCCompiler bugfix. 11 March 2005, 17:20:43 UTC
64c40c4 damn. 10 March 2005, 13:45:23 UTC
4f7f616 This commit was manufactured by cvs2svn to create tag 'r241c1'. 10 March 2005, 04:59:14 UTC
b0907bf - fix generated Texinfo markup for \deprecated - add support for additional markup: \leq, \textbar, \textit - add a comment about the non-support for the Euro character 10 March 2005, 04:59:14 UTC
32ffd3d bump buildno for 2.4c1 10 March 2005, 04:51:47 UTC
9e9d858 fix broken usage comment (ported from trunk revision 1.112) 10 March 2005, 04:04:13 UTC
1698d59 add missing entries from GNU info conversion table 10 March 2005, 03:57:02 UTC
ce0e3bd correct several markup errors caught by the GNU info conversion 10 March 2005, 03:47:24 UTC
back to top