| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | This commit was manufactured by cvs2svn to create tag 'r201c1'.v2.0.1c1 | cvs2svn | 2001-06-13 | 1 | -0/+1 |
| | | |||||
| * | Also record the 2.0.1c1 Windows buildno in the branch, although the | Tim Peters | 2001-06-13 | 1 | -0/+2 |
| | | | | | 9-number gap looks odd here. | ||||
| * | Set Windows buildno to 17 for 2.0.1c1. | Tim Peters | 2001-06-13 | 1 | -2/+2 |
| | | |||||
| * | Change installer dialog titles to say Python 2.0.1c1. | Tim Peters | 2001-06-13 | 1 | -2/+2 |
| | | |||||
| * | Update version number and date for patch release candidate. | Fred Drake | 2001-06-13 | 1 | -3/+3 |
| | | |||||
| * | Update version number for patch release candidate. | Fred Drake | 2001-06-13 | 1 | -1/+1 |
| | | |||||
| * | Change the version to 2.0.1c1 -- release candidate 1, that is. | Guido van Rossum | 2001-06-13 | 1 | -3/+3 |
| | | |||||
| * | Bring SRE up do date with Python 2.1 | Guido van Rossum | 2001-06-13 | 7 | -170/+410 |
| | | |||||
| * | Backported two fixes from the Py2.1 tree (pre-unittest rewrite): | Barry Warsaw | 2001-06-04 | 1 | -3/+9 |
| | | | | | | | | | | | | | | | | ---------------------------- revision 1.3 date: 2001/04/10 15:01:20; author: gvanrossum; state: Exp; lines: +6 -0 Some other tests, when failing, don't always remove their TESTFN file. Try to do it for them, so our mkdir() operation doesn't fail. ---------------------------- revision 1.2 date: 2001/03/02 05:46:17; author: gvanrossum; state: Exp; lines: +3 -3 When catching errors from os.rmdir(), test for os.error, not IOError! ---------------------------- except I used OSError instead of os.error. | ||||
| * | The SF patch (#129288 - urllib.py - chanign %02x to %02X in quoting) | Barry Warsaw | 2001-06-04 | 1 | -3/+3 |
| | | | | | | | | | | | | | | was applied to urllib.py, but the corresponding change to test_urllib.py was not applied. Backport revision 1.6 of this file into the 2.0 maintenance branch. ---------------------------- revision 1.6 date: 2001/01/19 07:00:08; author: tim_one; state: Exp; lines: +8 -3 urllib.py very recently changed to produce uppercase escapes, but no corresponding changes were made to its std test. ---------------------------- | ||||
| * | Fix the version information to reflect that this is the maintenance | Fred Drake | 2001-05-08 | 1 | -4/+4 |
| | | | | | branch. | ||||
| * | Make the license GPL-compatible. | Guido van Rossum | 2001-05-04 | 1 | -16/+5 |
| | | |||||
| * | Correct two floating-point representations printed by the interpreter in | Fred Drake | 2001-04-25 | 1 | -2/+2 |
| | | | | | interactive examples. Error noted by Dinu Gherman. | ||||
| * | Add clause 8, as in the 2.1 version of the license. | Guido van Rossum | 2001-04-13 | 1 | -0/+4 |
| | | |||||
| * | Lib/xml/sax/xmlreader.py - import the exceptions this module can raise | Moshe Zadka | 2001-04-13 | 2 | -0/+9 |
| | | |||||
| * | Updated copyright situation; removed most BeOpen and all PythonLabs | Guido van Rossum | 2001-04-13 | 1 | -37/+30 |
| | | | | | references; clarified the version. | ||||
| * | Updated the license situation. Basically, this is the exact same | Guido van Rossum | 2001-04-13 | 1 | -56/+131 |
| | | | | | license as for 2.1. | ||||
| * | Inspired by Tim Peters' 1.14->1.15 checkin to asynchat | Moshe Zadka | 2001-04-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Quoting orignal message: ''' Fix from the Madusa mailing list: http://groups.yahoo.com/group/medusa/message/333 It's clear that Medusa should not be checking for an empty buffer via "buf is ''". The patch merely changes "is" to "==". However, there's a mystery here all the same: Python attempts to store null strings uniquely, so it's unclear why "buf is ''" ever returned false when buf actually was empty. *Some* string operations produce non-unique null strings, e.g. ''' | ||||
| * | Checking the diff from PC/getpatchp.c 1.22 to 1.23 | Moshe Zadka | 2001-04-11 | 1 | -2/+10 |
| | | | | | | | | | | This fixes many bugs, and was proposed by Thomas Heller. Original log message: ''' Checkin updated version of patch #103933 . As Thomas says, fixes the bugs #131064, #129584, #127722. See the discussion in bug #131064 ''' | ||||
| * | - #233253 - distutils/command/build_ext.py - the --define and --undef options | Moshe Zadka | 2001-03-31 | 2 | -1/+26 |
| | | | | | | | | didn't work, whether specified on the command-line or in setup.cfg. - distutils/command/build_ext.py - make docstrings raw - #128930 - distutils/command/build_ext.py - split rpath argument Suggested by AMK, but had to be massaged a bit from the cvs diff | ||||
| * | Backported pyexpat memory-leak plugs | Moshe Zadka | 2001-03-31 | 2 | -24/+91 |
| | | | | | backported by Martin van Lowis | ||||
| * | - distutils/command/install.py - make .get_outputs() produce a list of unique | Moshe Zadka | 2001-03-31 | 2 | -2/+9 |
| | | | | | filenames | ||||
| * | - #227562 - urllib.py - call URLopener.http_error_default when | Moshe Zadka | 2001-03-31 | 2 | -4/+31 |
| | | | | | | | | an invalid 401 request is being handled. - urllib.py - provide simple recovery/escape from apparent redirect recursion - #129288 - urllib.py - chanign %02x to %02X in quoting - urllib.py - HTTPS now works with string URLs | ||||
| * | - #117606 - configure.in, configure - use gcc -shared and gcc -fPIC | Moshe Zadka | 2001-03-31 | 3 | -261/+273 |
| | | |||||
| * | - xmllib.py - Moved clearing of "literal" flag. The flag is set in setliteral | Moshe Zadka | 2001-03-31 | 2 | -1/+9 |
| | | | | | | | | which can be called from a start tag handler. When the corresponding end tag is read the flag is cleared. However, it didn't get cleared when the start tag was for an empty element of the type <tag .../>. This modification fixes the problem. | ||||
| * | Treat \r as whitespace too, when removing trailing whitespace | Moshe Zadka | 2001-03-31 | 1 | -1/+1 |
| | | |||||
| * | - #12195 - webbrowser.py - there was typo in Mac code | Moshe Zadka | 2001-03-31 | 2 | -1/+3 |
| | | |||||
| * | - Update install-sh using version from automake 1.4. | Moshe Zadka | 2001-03-31 | 2 | -26/+159 |
| | | |||||
| * | - #121706 - config.c - _PyImport_Inittab: define the exceptions module's init | Moshe Zadka | 2001-03-31 | 2 | -1/+4 |
| | | | | | function. | ||||
| * | The ".pth" code knew about the layout of Python trees on unix and | Moshe Zadka | 2001-03-31 | 2 | -0/+5 |
| | | | | | windows, but not on the mac. Fixed. | ||||
| * | - #130306 - statcache.py - full of thread problems. | Moshe Zadka | 2001-03-31 | 2 | -18/+17 |
| | | | | | - Made statcache.forget_dir more portable | ||||
| * | Fix two typos in __imul__. Closes Bug #117745. | Moshe Zadka | 2001-03-31 | 2 | -2/+9 |
| | | |||||
| * | - #128713 - mmapmodule.c - type(mmap_object) blew up on Linux. | Moshe Zadka | 2001-03-31 | 1 | -5/+6 |
| | | | | | | - mmap on windows creates a mapping without a name when tagname isn't specified | ||||
| * | - #119862 - getargs.c - patched memory leak | Moshe Zadka | 2001-03-31 | 3 | -1/+16 |
| | | | | | | - #128475 - pythonrun.c - In Py_Finalize, don't reset initialized flag until after the exit funcs have run | ||||
| * | Address a bug in the uuencode decoder, reported bu "donut" in SF bug | Moshe Zadka | 2001-03-31 | 2 | -3/+5 |
| | | | | | #127718: '@' and '`' seem to be confused. | ||||
| * | Make mpz's .binary() work on 64 bit platforms | Moshe Zadka | 2001-03-31 | 2 | -1/+11 |
| | | | | | Make mpzmodule compile with cygwin | ||||
| * | #125375 - parsermodule.c - fix parser.tuple2ast() failure on valid parse tree | Moshe Zadka | 2001-03-31 | 2 | -11/+22 |
| | | |||||
| * | curses.ascii - space (ASCII 32) is now considered whitespace | Moshe Zadka | 2001-03-31 | 2 | -1/+3 |
| | | |||||
| * | atexit.py - mutate list of functions in thread-safe way | Moshe Zadka | 2001-03-31 | 2 | -2/+3 |
| | | |||||
| * | #123924: Windows - using OpenSSL, problem with socket in httplib.py. | Moshe Zadka | 2001-03-31 | 2 | -1/+6 |
| | | |||||
| * | - #119833 - close socket in smtplib if there was an error connecting | Moshe Zadka | 2001-03-31 | 3 | -16/+34 |
| | | | | | - #126863 - getopt long option handling fixed | ||||
| * | Fixing #125452 - shlex.shlex hangs when it encounters a string with an | Moshe Zadka | 2001-03-31 | 1 | -0/+5 |
| | | | | | unmatched quote | ||||
| * | Fixing #233200 - cPickle did not use Py_BEGIN_ALLOW_THREADS. | Moshe Zadka | 2001-03-31 | 2 | -10/+21 |
| | | |||||
| * | - posixmodule.c - Add missing prototypes in for SunOS 4.1.4, plug memory leak | Moshe Zadka | 2001-03-31 | 2 | -2/+18 |
| | | | | | | | | - #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 | ||||
| * | Use Py_CHARMASK for ctype macros. Fixes bug #232787. | Moshe Zadka | 2001-03-31 | 4 | -6/+8 |
| | | |||||
| * | - #125981 -- socketmodule.c -- closing sockets was not thread-safe. | Moshe Zadka | 2001-03-31 | 2 | -10/+17 |
| | | | | | | | - Use openssl/*.h to include the OpenSSL header files - Patch #103636: Allow writing strings containing null bytes to an SSL socket | ||||
| * | - #122162 -- unicodeobject.c --- Fix unicode .split() off-by-one | Moshe Zadka | 2001-03-31 | 3 | -12/+42 |
| | | | | | - Loosely based on patch #103249 -- Fix core dumps in PyUnicode_Count | ||||
| * | - exceptions.c - make_class() Added a "goto finally" so that if | Moshe Zadka | 2001-03-30 | 2 | -0/+21 |
| | | | | | | | | | | | | 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. | ||||
| * | - #121013 - stringobject.c -- "".join(u"this is a test") dumped core | Moshe Zadka | 2001-03-30 | 1 | -1/+1 |
| | | |||||
| * | Fixed deleting func_defaults causes segmentation fault bug | Moshe Zadka | 2001-03-30 | 2 | -1/+4 |
| | | |||||
