summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r212'.v2.1.2cvs2svn2002-01-151-0/+1
|
* Assorted Windows tweaks to change the release from 2.1.2c1 to 2.1.2.Tim Peters2002-01-153-6/+8
| | | | I have nothing else I intend to check in for 2.1.2 final.
* Bump version to 2.1.2 final.Guido van Rossum2002-01-151-3/+3
|
* News for 2.1.2 final. This is good now.Guido van Rossum2002-01-151-0/+22
|
* Found another place where the copyrgiht date had to be fixed.Guido van Rossum2002-01-152-3/+4
|
* Set the release version and date.Fred Drake2002-01-151-2/+2
|
* Set the release version.Fred Drake2002-01-151-1/+1
|
* Backport revision 2.69.Guido van Rossum2002-01-151-2/+3
| | | | | | | | | | | | | | | | | | | SF patch #471839: Bug when extensions import extensions (Shane Hathaway) When an extension imports another extension in its initXXX() function, the variable _Py_PackageContext is prematurely reset to NULL. If the outer extension then calls Py_InitModule(), the extension is installed in sys.modules without its package name. The manifestation of this bug is a "SystemError: _PyImport_FixupExtension: module <package>.<extension> not loaded". To fix this, importdl.c just needs to retain the old value of _Py_PackageContext and restore it after the initXXX() method is called. The attached patch does this. This patch applies to Python 2.1.1 and the current CVS.
* Merge in Thomas Heller's typo fix from revision 1.13.Fred Drake2002-01-151-1/+1
|
* Copied from the HEAD revision, and checked in again after doing aThomas Heller2002-01-111-0/+0
| | | | "cvs admin -kb installer.bmp" (although this should be unneeded?).
* Add blurb about 32-bit Windows installer -- this made the SF release notes,Tim Peters2002-01-111-15/+19
| | | | | but apparently didn't get backstitched into NEWS before the release. Trimmed trailing whitespace.
* Remove remaining 2.2-isms:Tim Peters2002-01-111-16/+20
| | | | | | | | | | | + Lib/site-packages wasn't created on Windows in 2.1. + The compiler package lived in Tools instead of in Lib. After this, a directory compare of an installed 2.1.1 and an installation created by this installer "are close". The remaining differences have to do with files that the old installer mistakenly never knew existed (like the distutils README, and pynche's color-name files). All such cases in 2.1.1 were bugs, now repaired in 2.1.2.
* The license text needs to refer to 2.1.2, not 2.1.1.Tim Peters2002-01-101-10/+10
|
* 2.1-ize command for Start menu GUI pydoc shortcut.Tim Peters2002-01-101-1/+1
|
* Add the GetArgv() docs provided by Dean Draayer in SF patch #496705.Fred Drake2002-01-101-1/+47
|
* Update to the latest version from the trunk.Fred Drake2002-01-101-11/+45
|
* Mostly removing stuff the installer does in 2.2 that can't be done inTim Peters2002-01-101-28/+10
| | | | | | 2.1 (e.g., there was no Lib/test/data directory then, hotshot didn't exist, ditto the Lib/email package, etc). Also restored the now-obsolete expat setup.
* One more copyright date to update.Fred Drake2002-01-101-1/+1
|
* Attempted to update all the copyright notices (we're releasing this inTim Peters2002-01-103-4/+4
| | | | 2002!). Does anyone know of a copyright blurb I missed?
* More backporting of 32-bit installer. Doesn't work yet, but gettingTim Peters2002-01-102-503/+1989
| | | | closer.
* Adjust the instructions for building large file support so that it worksFred Drake2002-01-101-6/+4
| | | | | | more cleanly (I think this supports more Linux systems; not sure). Barry Warsaw & Martin von Loewis actually agree on this! This closes SF patch #502023.
* Backporting the 32-bit installer requires an additional .wse script,Tim Peters2002-01-101-0/+514
| | | | copied here verbatim from the trunk (it should be release-independent).
* Update Windows build number for 2.1.2c1.Tim Peters2002-01-102-2/+4
|
* This commit was manufactured by cvs2svn to create tag 'r212c1'.v2.1.2c1cvs2svn2002-01-101-0/+1
|
* tweak version numbers - 2.1.2c1, release candidate.Anthony Baxter2002-01-102-4/+4
|
* backport 1.14:Anthony Baxter2002-01-101-6/+2
| | | | | | | Fix the second reincarnation of SF #456395 -- failure on IRIX. This time use .replace() to change all \r\n into \n, not just the last one. This makes test_pty work on Irix.
* Prepare for 2.1.2 release candidate 1.Fred Drake2002-01-102-4/+4
|
* added bdfl editsAnthony Baxter2002-01-101-3/+6
|
* Added item about the webbrowser security fix.Fred Drake2002-01-101-0/+4
|
* build notes for macos x 10.1, from Dan Wolfe.Anthony Baxter2002-01-101-0/+28
| | | | | Closes patch: [ #481080 ] Read Me file Patch for Python 2.1.2
* cosmetic change to add a commit message for the last commit, accidentlyAnthony Baxter2002-01-101-1/+1
| | | | | | | | sent with empty message. sheesh. Lucky I decided it was worth doing last minute complete compile tests. cvs merge stupid on my part fixed that made solaris builds totally fail.
* thread_pthread.hAnthony Baxter2002-01-101-1/+1
|
* oops. PEP-0101 missed this.Anthony Baxter2002-01-101-1/+1
|
* oops. forgot about largefile support.Anthony Baxter2002-01-101-0/+3
|
* backport Fred's 1.58:Anthony Baxter2002-01-101-0/+13
| | | | | Added documentation of the sendall() method, and a note to the send() method that it does not guarantee that all data is sent.
* 2.1.2 release continues...Anthony Baxter2002-01-101-3/+3
|
* Backport gvanrossum's checkin of revision 1.20:Anthony Baxter2002-01-101-1/+4
| | | | | | | | | | | Thread.__bootstrap(): ignore exceptions in the self.__delete() call in the finally clause. An exception here could happen when a daemon thread exits after the threading module has already been trashed by the import finalization, and there's not much of a point in trying to insist doing the cleanup in that stage. This should fix SF bug ##497111: active_limbo_lock error at program exit.
* and heeeere we go. heading for 2.1.2 release.Anthony Baxter2002-01-101-0/+55
|
* Fix webbrowser.py security bug: be more careful about what we pass toFred Drake2002-01-071-12/+15
| | | | | os.system(). This closes Python bug #500401, Debian bug #127507.
* MvL's patch to fix up large file support. You still need to enable itAnthony Baxter2002-01-071-9/+19
| | | | | manually with, e.g.: CC='gcc -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' ./configure
* Do not mask the name of a built-in function in example code.Fred Drake2002-01-051-1/+1
| | | | Based on comment sent to python-docs.
* Fix minor typo reported in SF patch #497951.Fred Drake2002-01-051-1/+1
|
* A slightly different version of patch 489388 which addresses two MacOSX issues:Jack Jansen2001-12-272-326/+356
| | | | | | | | - Use -flat-namespace linker option to allow building on 10.1 and later. - Allows it to build on 10.1.1 and later (which use a different version numbering scheme for "uname"). Anthony asked me to check this in.
* Don;t build curses on MacOSX 10.1 or later. This is patch 496905, andJack Jansen2001-12-271-1/+1
| | | | Anthony asked me to check it in.
* Another name.Fred Drake2001-12-271-0/+1
|
* Added some missing index entries, noted by L. Peter Deutsch.Fred Drake2001-12-271-0/+2
|
* Elaborate the descriptions for onecmd(), precmd(), and postcmd() so they areFred Drake2001-12-271-6/+19
| | | | useful. Includes one correction in the precmd() description.
* Added another name.Fred Drake2001-12-261-0/+1
|
* Fix wrongly-named formal parameters in three places: begin_y was used twiceFred Drake2001-12-261-76/+75
| | | | | | | | instead of begin_y and begin_x for derwin(), subpad(), and subwin(). Reported for derwin() by Eric Huss. Added class annotations for the window methods so they would be properly described in the index.
* oops. nearly forgot this one:Anthony Baxter2001-12-231-1/+1
| | | | backport patch #495358 rfc822.AddressList and "<>" address