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

sort by:
Revision Author Date Message Commit Date
80a5f0a - Update install-sh using version from automake 1.4. 31 March 2001, 14:06:32 UTC
f371296 - #121706 - config.c - _PyImport_Inittab: define the exceptions module's init function. 31 March 2001, 14:01:13 UTC
2a56667 The ".pth" code knew about the layout of Python trees on unix and windows, but not on the mac. Fixed. 31 March 2001, 13:52:02 UTC
98cf19b - #130306 - statcache.py - full of thread problems. - Made statcache.forget_dir more portable 31 March 2001, 13:46:34 UTC
805e7c6 Fix two typos in __imul__. Closes Bug #117745. 31 March 2001, 13:32:38 UTC
8b21969 - #128713 - mmapmodule.c - type(mmap_object) blew up on Linux. - mmap on windows creates a mapping without a name when tagname isn't specified 31 March 2001, 13:23:19 UTC
175a46d - #119862 - getargs.c - patched memory leak - #128475 - pythonrun.c - In Py_Finalize, don't reset initialized flag until after the exit funcs have run 31 March 2001, 13:18:35 UTC
d085188 Address a bug in the uuencode decoder, reported bu "donut" in SF bug #127718: '@' and '`' seem to be confused. 31 March 2001, 11:14:43 UTC
2010399 Make mpz's .binary() work on 64 bit platforms Make mpzmodule compile with cygwin 31 March 2001, 10:55:47 UTC
256a550 #125375 - parsermodule.c - fix parser.tuple2ast() failure on valid parse tree 31 March 2001, 10:29:03 UTC
2c476bb curses.ascii - space (ASCII 32) is now considered whitespace 31 March 2001, 10:06:18 UTC
2112200 atexit.py - mutate list of functions in thread-safe way 31 March 2001, 09:45:04 UTC
d4e7481 #123924: Windows - using OpenSSL, problem with socket in httplib.py. 31 March 2001, 09:32:01 UTC
9539076 - #119833 - close socket in smtplib if there was an error connecting - #126863 - getopt long option handling fixed 31 March 2001, 09:12:51 UTC
a60cde3 Fixing #125452 - shlex.shlex hangs when it encounters a string with an unmatched quote 31 March 2001, 08:42:37 UTC
64c21a5 Fixing #233200 - cPickle did not use Py_BEGIN_ALLOW_THREADS. 31 March 2001, 08:31:13 UTC
aece8f3 - posixmodule.c - Add missing prototypes in for SunOS 4.1.4, plug memory leak - #125891 - posixmodule.c - os.popen2,3 and 4 leaked file objects on Windows. - #128053 - posixmodule.c - #ifdef for including "tmpfile" in the posix_methods[] array was wrong -- should be HAVE_TMPFILE 31 March 2001, 08:10:03 UTC
d5ceef4 Use Py_CHARMASK for ctype macros. Fixes bug #232787. 31 March 2001, 07:33:56 UTC
0a6e179 - #125981 -- socketmodule.c -- closing sockets was not thread-safe. - Use openssl/*.h to include the OpenSSL header files - Patch #103636: Allow writing strings containing null bytes to an SSL socket 31 March 2001, 07:13:29 UTC
95e2265 - #122162 -- unicodeobject.c --- Fix unicode .split() off-by-one - Loosely based on patch #103249 -- Fix core dumps in PyUnicode_Count 31 March 2001, 06:48:52 UTC
23ec9eb - exceptions.c - make_class() Added a "goto finally" so that if populate_methods() fails, the return status will be -1 (failure) instead of 0 (success). fini_exceptions(): When decref'ing the static pointers to the exception classes, clear out their dictionaries too. This breaks a cycle from class->dict->method->class and allows the classes with unbound methods to be reclaimed. This plugs a large memory leak in a common Py_Initialize()/dosomething/Py_Finalize() loop. 30 March 2001, 21:01:09 UTC
324ebb1 - #121013 - stringobject.c -- "".join(u"this is a test") dumped core 30 March 2001, 20:44:51 UTC
f305203 Fixed deleting func_defaults causes segmentation fault bug 30 March 2001, 20:26:32 UTC
c322667 - Add TELL64() hack #ifdef to FreeBSD, Apple and BSDI Someone with BSDs, please test this! 30 March 2001, 20:06:55 UTC
93fe3d7 - Importing should now be safe with multiple Py_Initialize/Py_Finalize sequences. 30 March 2001, 19:45:13 UTC
81c7b62 Fixing bug #407504. -- did not close pwd/grp databases. 30 March 2001, 19:18:23 UTC
4bdc967 Fix memory leak with from import ... 30 March 2001, 18:50:23 UTC
641efd3 Fixed bug in complex(). No SF id 30 March 2001, 18:27:11 UTC
2b2ac3a #126161 and 123634 -- Unicode strings could not be pickled correctly. This is *backwards incompatible* with the previous pickling scheme, which wasnot reversible 30 March 2001, 17:20:58 UTC
f15aee5 Fixing #121965 -- containment in xrange objects. 30 March 2001, 16:49:07 UTC
5f45415 SF bug 119622: compile errors due to redundant atof decls. Fixed in compile.c and marshal.c Quote tim: "Python shouldn't be in the business of defining atof" 30 March 2001, 16:31:50 UTC
ff90535 Fixing #409651 -- \ in a character group 30 March 2001, 15:37:31 UTC
5984783 In Lib/locale.py, setlocale emulation, use != and not is not to compare strings 30 March 2001, 14:48:14 UTC
fc2b761 More _curses compilation-problem fixes. NetBSD, IRIX and platforms with term.h that makes "lines" a macro 30 March 2001, 14:23:06 UTC
78a2569 Documenting the _curses bug fix. 30 March 2001, 13:55:52 UTC
0cf3bad Yay! First fix I'm commiting on the way to 2.0.1 This is supposed to fix compilation problems of the curses module on SGI, and is based on the patch from 2.39 to 2.40 This should fix bug #116172 From the 2.39->2.40 log: * Check for 'sgi' preprocessor symbol, not '__sgi__' * Surround individual character macros with #ifdef's, instead of making them all rely on STRICT_SYSV_CURSES Metacomment: this is as much to test procedures as it is to actually fix the bug. If you're a CVS wizard please look at the checkin message to see I'm commiting correctly, and e-mail me if not, and I'll do my best to back it out and reread the docos. Good luck to me. 29 March 2001, 19:27:29 UTC
c9a822a Merge Moshe's patch (fix argcnt for _cmp() into the 2.0.1 branch. 20 March 2001, 16:18:30 UTC
a2ec997 Document how to access bug reports by id. 15 March 2001, 17:12:36 UTC
0a932b6 Move _tkinter.c 1.115 into release branch. 15 March 2001, 16:56:36 UTC
b5790c1 Fix core dump whenever PyList_Reverse() was called. This fixes SF bug #132008, reported by Warren J. Hack. The copyright for this patch (and this patch only) belongs to CNRI, as part of the (yet to be issued) 1.6.1 release. This is checked into the 2.0 mainenance branch! The HEAD branch comes next. 12 February 2001, 22:03:02 UTC
5696eb2 forgot to update the comment to reflect the change in default linkage 02 January 2001, 17:09:48 UTC
d8f38d8 change default linkage of bsddb to shared - closes bug #126564 02 January 2001, 17:07:49 UTC
0ae1490 This commit was manufactured by cvs2svn to create branch 'release20-maint'. 02 January 2001, 17:07:49 UTC
ff139a8 This commit was manufactured by cvs2svn to create tag 'release20'. 16 October 2000, 20:51:33 UTC
adfb94f Typo repair. 16 October 2000, 20:51:33 UTC
d867a2c revise xml comment 16 October 2000, 20:41:38 UTC
1a64050 Updated the XML package comment. 16 October 2000, 20:27:25 UTC
989b7b9 Filled in math-module info; fixed a typo or two. 16 October 2000, 20:24:53 UTC
d6e2023 Add NEWS for 2.0 final (there are a few XXX comments that must be addressed). Fix a few nits in 2.0c1 news. 16 October 2000, 20:08:38 UTC
b675081 the usual 16 October 2000, 18:26:42 UTC
e216705 the usual (part II) 16 October 2000, 17:42:40 UTC
98c8184 Test for math.* exceptional behavior only in verbose mode, so that the oddball platforms (where, e.g., math.exp(+huge) still fails to raise OverflowError) don't fail the std test suite when run normally. 16 October 2000, 17:35:13 UTC
a8268e9 the usual 16 October 2000, 17:33:50 UTC
1a2ca86 Patch #101936: Auto-detect DEC threads (which need "-threads" argument) by Thomas Wouters 16 October 2000, 16:59:12 UTC
75f8101 find(): Application of (slightly modified) SF patch #101928 by Ulf Betlehem, verified by Peter Funk. Fixes preservation of language search order lost due to use of dictionary keys instead of a list. Closes SF bug #116964. 16 October 2000, 15:47:50 UTC
21000ca distutils setup files for Tkinter 16 October 2000, 15:36:25 UTC
355e2f2 misc. RPM support files 16 October 2000, 15:34:52 UTC
ac5f748 Demos of the new XML support from Lars Marius Garshol <larsga@garshol.priv.no>. 16 October 2000, 15:27:05 UTC
f155170 Correct form of FourThought's name 16 October 2000, 14:19:21 UTC
0eb75b4 Bump version to 1.0.1. 15 October 2000, 19:20:20 UTC
55b4efd Fixed minor problem with reset(). 14 October 2000, 10:28:01 UTC
6869245 Prep the Windows installer for 2.0 final: + Bump the build number. + Changed app name in installer dialogs. + Fiddled dialogs to repair grammar and get rid of anachronisms (e.g., "ProgMan" and "Program Manager" haven't made sense since Windows 3.1!). 14 October 2000, 07:35:15 UTC
89fb035 For PyErr_Format(), note that the exception parameter can be a string or class, but not an instance (since an instance will be created using the formatted message string as the constructor parameter). 14 October 2000, 05:49:30 UTC
3c8c2f9 Adjust the Macintosh manual to have the formatting dependencies for manuals instead of howtos. 14 October 2000, 05:47:17 UTC
21c9df7 For os.stat() & friends, note that the time fields are returned as floating-point values. 14 October 2000, 05:46:11 UTC
e764968 Update dependencies for the Macintosh manual. 14 October 2000, 05:44:32 UTC
c25296a Update to include all the new chapters & sections. Convert from a howto to a manual, so we can *have* chapters! Comment out the macconsole module documentation; Think C seems to have disappeared. 14 October 2000, 05:41:17 UTC
c7babad Remove everything that is not module documentation. It is no longer needed here. 14 October 2000, 05:39:08 UTC
8e850ee Fix some internal references that I botched. 14 October 2000, 05:24:20 UTC
45aa573 Chapter on how to use MacPython, by Bob Savage <bobsavage@mac.com>. 14 October 2000, 05:09:42 UTC
4d0d621 Chapters on Mac Toolbox modules and other undocumented modules, ready to be filled in with real information. Contributed by Chris Barker <cbarker@jps.net>. 14 October 2000, 05:08:34 UTC
1bd905e Documentation for the aepack and aetypes modules, by Vincent Marchetti <vincem@en.com>. 14 October 2000, 05:06:24 UTC
8f6ca15 Chris Barker <cbarker@jps.net>: Small fixes. 14 October 2000, 04:59:12 UTC
eab58af Chris Barker <cbarker@jps.net>: Various updates and additions. 14 October 2000, 04:56:52 UTC
26fbd8b Chris Barker <cbarker@jps.net>: Small clarification, remove the assertion that the module is temporary. 14 October 2000, 04:55:15 UTC
658865c Chris Barker <cbarker@jps.net>: Added summary of the strengths and weaknesses of the FrameWork module and fixed some typos. 14 October 2000, 04:53:31 UTC
f459a09 Wrap a long line. 14 October 2000, 04:49:36 UTC
b6441e7 More names. 14 October 2000, 04:47:53 UTC
eecdc7f A bunch of nits fix and some additional information added by Chris Barker <cbarker@jps.net>. 14 October 2000, 04:45:22 UTC
8f176ac Update the comments for the BSD DB module, including a new pointer to the DB 3 module; thanks to Robin Dunn <robind@users.sourceforge.net>. This closes SourceForge bug #116850. 14 October 2000, 04:14:09 UTC
9d62943 Center the top line of the license page, to make it look just a little bit cleaner. 14 October 2000, 04:07:49 UTC
047c372 Removed debugging code at bottom. 14 October 2000, 04:07:39 UTC
fa9ff76 Untabified. 14 October 2000, 04:06:40 UTC
4cd6f2a Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by adding an 'other_libraries()' parameter. 14 October 2000, 03:56:42 UTC
0b4dafc Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing if we actually installed modules to a directory in sys.path. 14 October 2000, 03:47:07 UTC
2e38a50 Bastian Kleineidam: fix up any supplied command-line options. 14 October 2000, 03:40:20 UTC
ab49e88 Call SchedParams(1,0) so the dialog is correctly re-enabled after something has been on top of it. 13 October 2000, 23:35:04 UTC
8c94d5e Added some of the new Numeric modules (which weren't rebuilt). 13 October 2000, 23:34:06 UTC
52b5b02 If we're installing to another partition than the system partition offer to copy PythonCore in stead of aliasing it. This should fix the applet problems some people have. 13 October 2000, 23:33:34 UTC
31e7c9c Updated with cmd-. fix and PythonCore copy option. 13 October 2000, 23:32:44 UTC
20da14c getting close 13 October 2000, 23:05:44 UTC
ac148b5 run the std regression test suite using bytecode produced by the compiler 13 October 2000, 22:00:13 UTC
e7f710c add -d option that dumps entire AST before compiling 13 October 2000, 21:59:32 UTC
9c048f9 Now supports entire Python 2.0 language and still supports Python 1.5.2. The compiler generates code for the version of the interpreter it is run under. ast.py: Print and Printnl add dest attr for extended print new node AugAssign for augmented assignments new nodes ListComp, ListCompFor, and ListCompIf for list comprehensions pyassem.py: add work around for string-Unicode comparison raising UnicodeError on comparison of two objects in code object's const table pycodegen.py: define VERSION, the Python major version number get magic number using imp.get_magic() instead of hard coding implement list comprehensions, extended print, and augmented assignment; augmented assignment uses Delegator classes (see doc string) fix import and tuple unpacking for 1.5.2 transformer.py: various changes to support new 2.0 grammar and old 1.5 grammar add debug_tree helper than converts and symbol and token numbers to their names 13 October 2000, 21:58:13 UTC
5bad5a4 Updated test suite to latest pulldom changes. 13 October 2000, 20:54:10 UTC
ec964d5 Moved appendChild calls back to DOMEventStream. Added SAX2DOM class. 13 October 2000, 20:53:27 UTC
4221ff0 Clear siblings, now that they are being set. 13 October 2000, 20:11:42 UTC
d5fd45f Made options global (as PyMac_options) so macosmodule can access it. 13 October 2000, 19:44:40 UTC
91eb3e8 Update the release number and date. 13 October 2000, 15:35:27 UTC
8a00abc Make the regrtest.py -l (findleaks) option considerably less obnoxious. First, only report garbage that the GC cannot free. Second, only report the number of objects found, not their repr(). People can dig deeper on their own if they find a leak. 13 October 2000, 01:32:42 UTC
back to top