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

sort by:
Revision Author Date Message Commit Date
2389c09 Document that the flag and mode arguments to dumbdbm.open() are ignored. 07 December 2001, 21:59:56 UTC
f927c4b Describe the behavior of the read() method when the list of filenames includes files that do not exist, explain the intended use of the interface, and show how to ensure an expected file really exists. This closes SF bug #490399. 07 December 2001, 21:37:38 UTC
33f9fa7 Document that PyString_FromString() cannot take NULL as a parameter. This closes SF bug #489872. 06 December 2001, 20:38:15 UTC
5c2f276 backport unixccompiler.py 1.36, ccompiler.py 1.40 support for dylib - allow zlib included in OS to be used rather than have to compile and install in /usr/local 05 December 2001, 06:57:31 UTC
e637074 backport 1.53 - prevent ncurses being built on Mac OS X. 05 December 2001, 06:55:46 UTC
ad22237 backport 1.15 Make sure path names inserted into ZIP files are normalized to use "/" as the directory separator, as required by the format specification. This closes SF bug #440693. 05 December 2001, 06:46:16 UTC
6fcbe88 backport 1.21 and 1.22 -- Fix malformed line (PyChecker) -- _os should be os; reported by Neal Norwitz. -- 05 December 2001, 06:42:36 UTC
598d8e6 backport 1.134: Added missing parameter in call to http_error_default(); reported by Neal Norwitz. 05 December 2001, 06:37:51 UTC
98e931f backport 1.17: Fix SF bug [ #447370 ] typo in urllib2.py Also fix another bug caught by pychecker-- HTTPError() raised when redirect limit exceed did not pass an fp object. Had to change method to keep fp object around until it's certain that the error won't be raised. Remove useless line in do_proxy(). 05 December 2001, 06:34:34 UTC
b9be511 backport 1.8, 1.9 -- patch 418489 from Andrew Dalke for string format bug -- Merged in bugfix from PyUnit CVS for problem reported by Gary Todd. If 'unittest.py' was run from the command line with the name of a test case class as a parameter, it failed with an ugly error. (Which was a shame, because the documentation says you can do that.) -- 05 December 2001, 06:30:21 UTC
a261cb2 backport: Add 'sendall' to list of socket methods. 05 December 2001, 06:16:10 UTC
8e24709 backport 1.7: Amazing. This would open the sound file in text mode. Fixed. SF bug #446219. 05 December 2001, 06:13:38 UTC
138f443 backport half of 1.11: __getaddr(): Watch out for empty addresses that can happen when something like "MAIL FROM:<CR>" is received. This avoids the IndexError and rightly returns an SMTP syntax error. 05 December 2001, 06:11:26 UTC
1015acd backport 1.33: Be more permissive in what is accepted as an attribute name; this makes this module slightly more resiliant in the face of XHTML input, or just colons in attribute names. 05 December 2001, 06:05:09 UTC
4bc57de backport 1.23: SF bug #473525 pyclbr broken As the comments in the module implied, pyclbr was easily confused by "strange stuff" inside single- (but not triple-) quoted strings. It isn't anymore. Its behavior remains flaky in the presence of nested functions and classes, though. 05 December 2001, 05:56:02 UTC
9f82e6e backport 1.18: Patch #416220: Fix misplaced paren. 05 December 2001, 05:54:24 UTC
e75ae8e backport 1.29: Typo fix (spelling mistake in error message). 05 December 2001, 05:33:27 UTC
1454210 backport of 1.21 SF bug [#473864] doctest expects spurios space. Repair unlikely surprise due to magical softspace attr and the use of print with a trailing comma in doctest examples. 05 December 2001, 05:19:51 UTC
18311e6 backport of 1.64, 1.65, 1.68: 1.64: Solve SF bug #231249: cgi.py opens too many (temporary) files. 1.65: Fix a denial-of-service attack, SF bug #443120. 1.68: "ib" should be "boundary"; reported by Neal Norwitz. the first two of these are pretty severe bugs. 05 December 2001, 05:10:28 UTC
f05af93 backport 1.18, 1.19, 1.20: -- Apply two small changes to the Windows code, according to SF bug #427345. These are supposed to support binary data and avoid buffering problems on Windows. -- SF patch #467430. - replace some log_error() calls with log_message() - flush self.rfile before forking too (hope this works on Windows) -- Fix two typos, one noted by Noah Spurrier in SF bug #475166, the second noted after a second's thought about what the next line should do. :-( 05 December 2001, 04:39:41 UTC
77aee7e backport of 1.12 check in for patch #430846 use faster code for base64.encodestring (courtesy of Mr. Tim Peters) and for base64.decodestring (courtesy of Anthony Baxter) 05 December 2001, 04:34:13 UTC
c886f2a backport 1.11 Catch only the relevant exceptions instead of using a bare except clause. 05 December 2001, 04:28:59 UTC
55aa02b backport of jeremy's 2.227: Fix for SF bug [ #471928 ] global made w/nested list comprehensions . Initially I was going to just rip out the bits of this that fixed this bug, but the rest of the code looks (after a fair amount of staring at it) like it's ok - variable renames, that sort of thing. flames and "hey, no way!" to me, or to python-dev. It felt safer to just go with the full patch, rather than butchering it. 21 November 2001, 06:21:18 UTC
d2d88ae backport of tim's 2.66: . SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. - errors.c, PyErr_Format: add a va_end() to balance the va_start(). 21 November 2001, 05:41:03 UTC
b104606 backport of 2.8, after checking with MarkH . Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x problems. As discussed on python-dev 21 November 2001, 05:37:32 UTC
a700e18 backport of patches 2.10, 2.11, 2.12, by MvL. . Patch #455231: Support ELF properly on OpenBSD. . Patch to bug #472202: Correctly recognize NetBSD before 199712. . Move dlfcn.h block out of NetBSD block, assuming that NetBSD before 199712 didn't have dlfcn.h, or that it wouldn't conflict with the other stuff defined. 21 November 2001, 05:01:44 UTC
057a2e7 backport of 2.8 by jack: Patch by Jonathan Wight (slightly reformatted) to forestall loading the same module twice, which apparently crashes Python. I could not test the error condition, but in normal life it seems to have no adverse effects. Also removed an unsued variable, and corrected 2 glaring errors (missing 'case' in front of a label). 21 November 2001, 04:58:37 UTC
b78e593 backport of 2.242: improved error message-- names the type of the unexpected object 21 November 2001, 04:49:19 UTC
1534ab5 backport of 2.90: Patch number #422106 by Greg Ball, to fix segmentation fault in sys.displayhook. 21 November 2001, 03:51:20 UTC
ede717e Update the platform notes for the CGIHTTPServer module; it works on more platforms now, and has since Python 2.0. This closes SF bug #482943. 19 November 2001, 05:22:44 UTC
53237e2 \ulink is not available on the maintenance branch, so we can't use it. 02 November 2001, 19:34:49 UTC
2a6bbfa Correct misspelling of "separate" in two places. This closes SF bug #476898. 01 November 2001, 19:49:45 UTC
470742a one more for the night. backport of 2.26: Make the gc.collect() function respect the collection lock. This fixes SF bug 476129: "gc.collect sometimes hangs". 01 November 2001, 15:34:20 UTC
0af83c0 backport of (merged) 1.43 and 1.44 initregex(): this function is declared void, so the recent change to return NULL in an error case was itself an error. initregex(): Check return value of PyErr_Warn() and propagate the exception (if any.) 01 November 2001, 14:55:03 UTC
8f113e9 backport of 2.58: Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) Replace some tortuous code that was trying to be clever but forgot to DECREF the key and value, by more longwinded but obviously correct code. 01 November 2001, 14:43:51 UTC
3688899 backport 2.56 from uncle tim: Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out it actually does <wink>, perhaps an Insure run will catch it. Also removed senseless Windows comment. 01 November 2001, 14:39:41 UTC
57ff377 backport barry's 2.54: select_select(): Closing bug #448351 the easy way, i.e. by changing the "#ifdef MS_WINDOWS" to "#ifdef SELECT_USES_HEAP" and by setting SELECT_USES_HEAP when FD_SETSIZE > 1024. The indirection seems useful since this subtly changes the path that "normal" Windows programs take (where Timmie sez FD_SETSIZE = 512). If that's a problem for Windows, he has only one place to change. 01 November 2001, 14:37:48 UTC
df71fc0 wrap SSL_read and SSL_write in Py_{BEGIN,END}_ALLOW_THREADS. other half of backport of guido's 1.188 01 November 2001, 14:25:38 UTC
645ea48 backport guido's 1.20 - test sktobj.sendall() needed this anyway. 01 November 2001, 14:18:29 UTC
aadae7d partial backport of guido's 1.188. Add sendall() method, which loops until all data is written or an error occurs, and doesn't return a count. (This is my second patch from SF patch #474307, with small change to the docstring for send().) the 'partial' is because 1.188 also added a couple of Py_*_ALLOW_THREADS wrappers around SSL_read and SSL_write, and I want to check those separately. This is adding a new method to the socket object, which would normally be a bad thing to do in a bugfix release - however, in this case, it allows fixes for a nasty problem that would otherwise have a filthy filthy fix to Get It Right. Still to-do is to patch the std library modules to use sendall() where appropriate, rather than send(). 01 November 2001, 14:14:26 UTC
7aff5e4 backport of MvL's 1.180 Test for __sun instead of __sun__, since SUNWspro only defines the latter; gcc defines both. ...must get sparc box at home out of cupboard for testing this stuff... 01 November 2001, 14:05:52 UTC
3357529 backport tim's 1.191: PySocketSock_connect_ex(): On Windows, return the correct Windows exit code. The patch is from Jeremy, and allows test_asynchat to run again. 01 November 2001, 14:00:11 UTC
5d0fdbc backport (partially) jeremy's 1.178 Use PySocket_Err() instead of PyErr_SetFromErrno(). The former does the right thing on Windows, the latter does not. The 'partial' is because the code's changed quite a lot and it's not clear that the two that are still there of the form return PyErr_SetFromErrno(SSLErrorObject); can be replaced with PySocket_Err() - it looks like they need the new PySSL_SetError, which is a tad large to be comfortable with just checking in without reading it further. 01 November 2001, 13:58:16 UTC
22a2ce8 backport tim's 2.44 Make clear in the docstring that "std" applies to both size and alignment, not just to alignment. Spotted by Guido. not normally bothering with docstring cleanups, but in this case Tim _did_ note it as a bugfix candidate, so I'll be nice :) 01 November 2001, 13:34:10 UTC
39103a2 backport of 2.114: SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. (skipped whitespace normalisation section of patch - this is a bugfix, not a beauty contest :) 01 November 2001, 13:14:43 UTC
c00f934 backport 2.26 [Bug #433047, reported by Armin Rigo] Remove extra 'i' character in PyArg_ParseTuple() call. 01 November 2001, 12:52:27 UTC
449ff25 backport 2.61. Properly use &&. Closes bug #434989. 01 November 2001, 12:48:28 UTC
2c0d76e backport of fix from 2.7 Fix for bug [ #433047 ] missing args to PyArg_ParseTuple 01 November 2001, 11:38:44 UTC
cece2b7 backport fixes from 2.32 and 2.29: Change the limit on the input size for b2a_base64 to what will fit in memory, rather than the standard's 57. This fixes SF bug #473009. This closes bug #430849 (internal error produced by binascii.a2b_base64) 01 November 2001, 11:30:06 UTC
9f29356 Typo: NamedNodeList --> NamedNodeMap 25 October 2001, 20:43:24 UTC
c870cec When describing "import *", add a level of indirection between "*" and the set of names imported (the "public names"), adding a definition of "public names" that describes the use of __all__. This closes SF bug #473986. Flesh out the vague reference to __import__(). 24 October 2001, 19:52:14 UTC
73319ff Clarify that the resource module does not attempt to mask platform differences by defining symbols not defined on particular platforms. This closes SF bug #473433. 22 October 2001, 14:25:12 UTC
dc009f3 Backport fix from 2.277 - incorrectly swapped arguments to PyFrame_BlockSetup. Fixes very obscure and nasty bug. 21 October 2001, 05:57:28 UTC
c573874 Add deprecations for profile.HotProfile and profile.OldProfile, since they will no longer exist in 2.2. 19 October 2001, 16:11:28 UTC
0039bd7 The 2.1 regrest.py doesn't have the test_main() feature yet, so always call test_main() at the end. 19 October 2001, 16:05:55 UTC
bad60d9 Fix leak in SSLread in nonblocking mode -- from SF bug #472798. (Not a merge from the code on the trunk -- the trunk has evolved perhaps too much.) 19 October 2001, 15:17:42 UTC
4da37fc Merge in selected changes from profile.py on the trunk. Note that this is *not* a simple-minded merge from the code on the trunk -- that does too much other stuff to be 100% safe for the 2.1.2 release (e.g. getting rid of HotProfile and OldProfile, changing some methods into global functions, a new calibration API). Add the test_profile.py module which verifies that the profiler works as expected. 19 October 2001, 15:13:51 UTC
a939b7a This commit was manufactured by cvs2svn to create branch 'release21-maint'. 19 October 2001, 15:13:51 UTC
9978957 Add a '+' to the version to indicate this is a post-2.1.1-release CVS version. 19 October 2001, 14:47:47 UTC
5203e32 The version number 1.0.2pre doesn't conform to the strict versioning guidelines in distutils/version, resulting in failure when trying to use distutils to install 4Suite (and perhaps other modules). Change it to 1.0.2. This finally really fixes Bug #417796. 19 October 2001, 08:07:19 UTC
5f0dacf Source distribution files also updated for 2.1.1. 11 August 2001, 20:05:03 UTC
c575f91 Remove lines that should never have been checked into this release21-maint branch; I checked them in erroneously in revision 1.52.4.1 of this file; it looks like that entire revision was operator error. This reverts that checkin and closes SF bug #449613. 09 August 2001, 22:00:32 UTC
2222ee0 Files used for 2.1.1 distribution. 02 August 2001, 22:26:53 UTC
7a31238 When closing a DialogWindow also clear out self.dlg. 02 August 2001, 22:25:31 UTC
11f8ca2 Got rid of (unused) regsub imports. 30 July 2001, 20:26:15 UTC
7be6cad Set cursor to arrow also if no windows active. Looks better when run from IDE. 30 July 2001, 20:25:37 UTC
40347ed Set cursor to arrow also when no window is active. Looks better when run from IDE. Got rid of regsub. 30 July 2001, 20:24:49 UTC
2b25f35 Just's fix in 1.10: call convert_path for scripts too. Needed for mac 2.1.1, and should do no harm to 2.1.2 (on the odd chance that will happen). 30 July 2001, 09:56:31 UTC
0823093 These demos used silly refcon values when creating their windows. This effectuively caused Pythons automatic cleanup of windows on refcount reaching zero to be disabled. 29 July 2001, 21:50:44 UTC
8998f14 These demos didn't know the difference between dialogs and windows yet. Fixed. 29 July 2001, 21:48:25 UTC
75975c7 If you double-click a file with creator Pyth but owner != TEXT exit with a warning that this is not a script but an auxiliary document such as a preferrences file or an aplication template. This is a lot better than giving syntax errors on binary data:-) 29 July 2001, 21:23:18 UTC
6dbbb80 ProgressBar crashed when you tried to drag it. (imported from main branch 1.33). 27 July 2001, 14:31:32 UTC
351552f Removed note that this is the first active installer, which isn't true (it's the second one:-). 26 July 2001, 21:13:53 UTC
a36a3bf Files used for 2.1.1c2 distribution. 26 July 2001, 21:12:45 UTC
93f4d19 FSRef support gone for classic builds. 26 July 2001, 21:10:55 UTC
aa943f6 Temporarily disabled FSRef support for non-Carbon builds. Not the correct test, as it is an OS8 vs. OS9 issue, but it will have to do for now. 26 July 2001, 21:09:57 UTC
8e45e17 Put 1.7 fix in maintainance branch (removed erronuous findertools reference). 25 July 2001, 20:41:14 UTC
39ddda4 Files used for 2.1.1c1 distribution. 22 July 2001, 22:11:43 UTC
112d20d This commit was manufactured by cvs2svn to create tag 'r211'. 20 July 2001, 14:55:28 UTC
2e03ba8 Fix showstopper SF bug #442983: use of site.addsitedir() was broken because it references the global dirs_in_sys_path which is deleted. The fix avoids deleting that global. (My email through python.org or digicool.com is non-functional at the moment; use gvanrossum@home.com to reach me.) 20 July 2001, 14:55:28 UTC
d8dd690 Backport Piers Lauder's checkin 1.30: fix missed conversion in ESR's string conversion This should be the *last* checkin in this branch, barring brown-bags, showstoppers and release cruft. 20 July 2001, 10:54:21 UTC
e6072c2 Remove the TENTATIVE marker from the 2.1.1 Windows buildno. 20 July 2001, 05:17:59 UTC
4811919 Converted the project to CW6 (it hadn't been compiled in a long time), added a carbon target and added 2 missing routines in Carbon. 19 July 2001, 21:03:19 UTC
24683e6 Updated news for 2.1.1-final. 19 July 2001, 16:29:48 UTC
249b51c Revert the previous two changes, unsetting PYTHONHOME breaks the build procedure on some platforms. Better safe than sorry! 19 July 2001, 13:21:05 UTC
cc8dd4e Merge from the trunk... just contains bugfixes, according to Jack and Just. 19 July 2001, 11:14:41 UTC
d1d2a9a Backport Jack's checkin 1.35 and Guido's checkin 1.36: Made distutils understand the MacPython Carbon runtime model. Distutils will build for the runtime model you are currently using for the interpreter. 19 July 2001, 11:13:35 UTC
01c61eb Backport of AMK's checkin 1.34 and Guido's checkin 1.35: [Bug #441527] Fixes for preprocessor support, contributed by Tarn Weisner Burton 19 July 2001, 09:50:49 UTC
041a51b Backport Guido's checkin 1.3: Should raise TestSkipped, not ImportError, when deciding to skip the test. 19 July 2001, 09:44:37 UTC
83ac330 Backport of Jack's checkin 1.117: File handlers don't work on the mac, so don't pretend they do. 19 July 2001, 09:43:12 UTC
e02518f Avoid the use of 'unset', which isn't available on all platforms. Fixes SF bug #442627. 19 July 2001, 09:28:24 UTC
5901116 Remove some false statements. 19 July 2001, 03:49:54 UTC
03bb77e Remove some false comments. Reorganize so the initialization sequences does not bite us in the foot. (There is no good reason to discard classes that clients may want to subclass.) 19 July 2001, 03:47:04 UTC
d92dc79 this closes patches item 429136 and brings the release21-maint version into sync with the head branch. 18 July 2001, 23:14:25 UTC
6f4747f Updated for 2.1.1. Just should check whether anything more about the IDE is worth mentioning. 18 July 2001, 22:40:41 UTC
d861465 Updated for 2.1.1. 18 July 2001, 22:40:15 UTC
9bedd8d First set of changes for 2.1.1. MacPython builds and passes the selftest with these. 18 July 2001, 22:39:59 UTC
774a968 If Python doesn't have a Unicode codec for the current system encoding return "ascii", not "macroman". 18 July 2001, 22:37:56 UTC
4522cc9 This commit was manufactured by cvs2svn to create branch 'release21-maint'. 18 July 2001, 22:37:56 UTC
35905ec Lots of small updates, some long overdue. 18 July 2001, 20:01:36 UTC
back to top