summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Final update. Now Tim can cut the Windows installer and check in hisGuido van Rossum2001-06-221-1/+2
| | | | | changes to PCbuild, then I'll tag the tree and build the final tar file, and we can shove this puppy OUT OF THE DOOR...!
* News about the 2.0.1 final release (planned for Friday 6/22/01).Guido van Rossum2001-06-201-0/+9
|
* Bring SRE up do date with Python 2.1Guido van Rossum2001-06-131-0/+2
|
* Lib/xml/sax/xmlreader.py - import the exceptions this module can raiseMoshe Zadka2001-04-131-0/+6
|
* - #233253 - distutils/command/build_ext.py - the --define and --undef optionsMoshe Zadka2001-03-311-0/+7
| | | | | | | 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 plugsMoshe Zadka2001-03-311-0/+2
| | | | backported by Martin van Lowis
* - distutils/command/install.py - make .get_outputs() produce a list of uniqueMoshe Zadka2001-03-311-1/+4
| | | | filenames
* - #227562 - urllib.py - call URLopener.http_error_default whenMoshe Zadka2001-03-311-0/+9
| | | | | | | 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 -fPICMoshe Zadka2001-03-311-0/+2
|
* - xmllib.py - Moved clearing of "literal" flag. The flag is set in setliteralMoshe Zadka2001-03-311-0/+8
| | | | | | | 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.
* - #12195 - webbrowser.py - there was typo in Mac codeMoshe Zadka2001-03-311-0/+2
|
* - Update install-sh using version from automake 1.4.Moshe Zadka2001-03-311-0/+2
|
* - #121706 - config.c - _PyImport_Inittab: define the exceptions module's initMoshe Zadka2001-03-311-0/+3
| | | | function.
* The ".pth" code knew about the layout of Python trees on unix andMoshe Zadka2001-03-311-0/+3
| | | | windows, but not on the mac. Fixed.
* - #130306 - statcache.py - full of thread problems.Moshe Zadka2001-03-311-0/+4
| | | | - Made statcache.forget_dir more portable
* Fix two typos in __imul__. Closes Bug #117745.Moshe Zadka2001-03-311-0/+7
|
* - #119862 - getargs.c - patched memory leakMoshe Zadka2001-03-311-0/+5
| | | | | - #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 bugMoshe Zadka2001-03-311-0/+2
| | | | #127718: '@' and '`' seem to be confused.
* Make mpz's .binary() work on 64 bit platformsMoshe Zadka2001-03-311-0/+3
| | | | Make mpzmodule compile with cygwin
* #125375 - parsermodule.c - fix parser.tuple2ast() failure on valid parse treeMoshe Zadka2001-03-311-0/+2
|
* curses.ascii - space (ASCII 32) is now considered whitespaceMoshe Zadka2001-03-311-0/+2
|
* atexit.py - mutate list of functions in thread-safe wayMoshe Zadka2001-03-311-0/+2
|
* #123924: Windows - using OpenSSL, problem with socket in httplib.py.Moshe Zadka2001-03-311-0/+2
|
* - #119833 - close socket in smtplib if there was an error connectingMoshe Zadka2001-03-311-0/+7
| | | | - #126863 - getopt long option handling fixed
* Fixing #233200 - cPickle did not use Py_BEGIN_ALLOW_THREADS.Moshe Zadka2001-03-311-0/+2
|
* - posixmodule.c - Add missing prototypes in for SunOS 4.1.4, plug memory leakMoshe Zadka2001-03-311-0/+7
| | | | | | | - #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 Zadka2001-03-311-0/+2
|
* - #125981 -- socketmodule.c -- closing sockets was not thread-safe.Moshe Zadka2001-03-311-0/+6
| | | | | | - 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-oneMoshe Zadka2001-03-311-0/+4
| | | | - Loosely based on patch #103249 -- Fix core dumps in PyUnicode_Count
* - exceptions.c - make_class() Added a "goto finally" so that ifMoshe Zadka2001-03-301-0/+12
| | | | | | | | | | | 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.
* Fixed deleting func_defaults causes segmentation fault bugMoshe Zadka2001-03-301-0/+2
|
* - Add TELL64() hack #ifdef to FreeBSD, Apple and BSDIMoshe Zadka2001-03-301-0/+1
| | | | Someone with BSDs, please test this!
* - Importing should now be safe with multiple Py_Initialize/Py_FinalizeMoshe Zadka2001-03-301-0/+3
| | | | sequences.
* Fixing bug #407504. -- did not close pwd/grp databases.Moshe Zadka2001-03-301-0/+4
|
* Fixed bug in complex(). No SF idMoshe Zadka2001-03-301-0/+3
|
* #126161 and 123634 -- Unicode strings could not be pickled correctly.Moshe Zadka2001-03-301-0/+5
| | | | | This is *backwards incompatible* with the previous pickling scheme, which wasnot reversible
* Fixing #121965 -- containment in xrange objects.Moshe Zadka2001-03-301-0/+2
|
* SF bug 119622: compile errors due to redundant atof decls.Moshe Zadka2001-03-301-0/+3
| | | | | Fixed in compile.c and marshal.c Quote tim: "Python shouldn't be in the business of defining atof"
* Fixing #409651 -- \ in a character groupMoshe Zadka2001-03-301-0/+2
|
* In Lib/locale.py, setlocale emulation, use != and not is not to compareMoshe Zadka2001-03-301-0/+4
| | | | strings
* More _curses compilation-problem fixes.Moshe Zadka2001-03-301-0/+6
| | | | NetBSD, IRIX and platforms with term.h that makes "lines" a macro
* Documenting the _curses bug fix.Moshe Zadka2001-03-301-0/+2
|
* Document how to access bug reports by id.Martin v. Löwis2001-03-151-0/+6
|
* Move _tkinter.c 1.115 into release branch.Martin v. Löwis2001-03-151-0/+11
|
* Typo repair.Tim Peters2000-10-161-1/+1
|
* revise xml commentJeremy Hylton2000-10-161-2/+2
|
* Updated the XML package comment.Fred Drake2000-10-161-3/+3
|
* Filled in math-module info; fixed a typo or two.Tim Peters2000-10-161-6/+12
|
* Add NEWS for 2.0 final (there are a few XXX comments that must beJeremy Hylton2000-10-161-9/+79
| | | | | | addressed). Fix a few nits in 2.0c1 news.
* distutils setup files for TkinterJeremy Hylton2000-10-162-0/+31
|