summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r233c1'.v2.3.3c1cvs2svn2003-12-051-0/+1
|
* this wasn't on the branch. mea culpaAnthony Baxter2003-12-051-5/+1
|
* 2.3.3c1Anthony Baxter2003-12-051-1/+1
|
* Add newsitem for a bugfix backport.Raymond Hettinger2003-12-041-0/+3
|
* Backport library tour, glossary, and small fixups to the tutorial.Raymond Hettinger2003-12-041-8/+331
|
* Backported from the trunk, on Raymond's request:Thomas Heller2003-12-041-0/+2
| | | | SF bug #849662. Dramatically, improve comparison speed for "if shl == None".
* Release date for 2.3.3c1.Thomas Heller2003-12-041-1/+1
|
* Version number and release date for IDLE, the version now is 1.0.2.Thomas Heller2003-12-042-2/+2
|
* Version number and filename changes for the wise installer.Thomas Heller2003-12-041-4/+4
|
* The Windows build number for 2.3.3c1 is 50.Thomas Heller2003-12-041-1/+1
|
* The Windows build number for 2.3.3c1 is 50.Thomas Heller2003-12-041-0/+2
|
* Version numbers for Python 2.3.3.Thomas Heller2003-12-041-0/+1
|
* Version numbers for Python 2.3.3c1. PEP 101 is unclear about the exactThomas Heller2003-12-041-1/+1
| | | | version number in the README file ;-(
* Version numbers for Python 2.3.3c1.Thomas Heller2003-12-041-3/+3
|
* Bump some version numbers.Fred Drake2003-12-042-4/+4
|
* backport:Guido van Rossum2003-12-031-2/+2
| | | | | | | | Reduce the size of Big String and Big Binary tests to 2**14 (minus one for Big String). This should make the tests pass on Win98SE. Note that the docs only promise lengths up to 2048. Unfortunately this no longer tests for the segfault I was seeing earlier, but I'm confident I've nailed that one. :-) Fixes SF 852281.
* Backport checkin:Walter Dörwald2003-12-031-1/+1
| | | | Fix typo. (From SF bug #853064)
* Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenamesMark Hammond2003-12-031-3/+50
|
* doc nitSkip Montanaro2003-12-021-1/+2
|
* Revert previous checkin. It was meant for another branch.Jeremy Hylton2003-12-021-3/+1
|
* To find the curses extension as a DLL (on OS/2), we need to adjust theAndrew MacIntyre2003-12-021-0/+15
| | | | | | library search path to include the extension directory. Without this, the curses_panel extension can't find the curses extension/DLL, which exports some curses symbols to it.
* - add notes about curses extension/DLL arrangements;Andrew MacIntyre2003-12-021-75/+68
| | | | - various cleanups and updates.
* - add build support for curses to be both extension and DLL, so thatAndrew MacIntyre2003-12-021-5/+12
| | | | | curses_panel works; - tweak compiler switches.
* use same compiler switches as core for extensionsAndrew MacIntyre2003-12-021-2/+2
|
* A hack: Disable import of re, because sre doesn't compile right.Jeremy Hylton2003-12-021-1/+3
| | | | DON'T MERGE THIS CHANGE TO THE TRUNK.
* Py_Finalize(): disabled the second call of cyclic gc, and added extensiveTim Peters2003-12-012-2/+37
| | | | | | | comments about why both calls to cyclic gc here can cause problems. Already fixed on the trunk. Since the calls were introduced in 2.3, that's the end of it.
* Convert path objects to strings in askdirectory. Fixes #852314.Martin v. Löwis2003-12-012-0/+8
|
* Add testcases for _winreg segfault (SF 851056).Guido van Rossum2003-11-301-1/+3
|
* Add news item for _winreg fix (SF bug 851056).Guido van Rossum2003-11-301-0/+5
|
* Backport:Guido van Rossum2003-11-301-16/+48
| | | | | | | | | | Remove all uses of alloca() from this module. The alloca() return value isn't checked, and it *is* possible that a very large alloca() call is made, e.g. when a large registry value is being read. I don't know if alloca() in that case returns NULL or returns a pointer pointing outside the stack, and I don't want to know -- I've simply replaced all calls to alloca() with either PyMem_Malloc() or PyString_FromStringAndSize(NULL,) as appropriate, followed by a size check. This addresses SF buf 851056.
* backport:Anthony Baxter2003-11-301-1/+1
| | | | | Fix a bug discovered by Kalle Svensson: comparing sys.maxint to 2**32-1 makes no sense. Use 2**31-1 instead.
* I think this description of bug #848614 is better.Thomas Heller2003-11-281-2/+2
|
* See SF #848614: distutils' msvccompiler now tries to detect that MSVC6Thomas Heller2003-11-282-1/+14
| | | | | is installed but the registry settings are incomplete because the gui has never been run.
* Fix (workaround, actually) for bug #844676: deselecting "show hidden" canJack Jansen2003-11-271-0/+2
| | | | | cause an index error. We now select the first package if this threatens to happen. Backport of 1.17.
* Package Mnager error dialogs could refer to hidden packages, which wasJack Jansen2003-11-271-0/+5
| | | | | confusing. To be on the safe side we always show hidden packages before showing error dialogs. Backport of 1.16.
* Added preliminary notes on creating the MacPython for Panther additionsJack Jansen2003-11-271-0/+28
| | | | distributions.
* Backported from the trunk.Jack Jansen2003-11-271-2/+48
|
* Patch #849350: Update to document bool return values.Martin v. Löwis2003-11-274-4/+4
|
* Fix a typo introduced at Rev 1.19.8.2Kurt B. Kaiser2003-11-251-1/+1
| | | | M IOBinding.py
* Silence GCC warning when asserts are turned off.Guido van Rossum2003-11-241-2/+1
|
* Backport:Kurt B. Kaiser2003-11-243-2/+27
| | | | | | | | | | | | | | - After an exception, run.py was not setting the exception vector. Noam Raphael suggested correcting this so pdb's postmortem pm() would work. IDLEfork Patch 844675 Update NEWS and include some items missed in IDLE1.0b2. Bump the version. Modified Files: Tag: release23-maint NEWS.txt idlever.py run.py
* test_guess_all_types(): Use a more robust test for checking thatBarry Warsaw2003-11-231-4/+7
| | | | | | | | | | guess_all_extensions() returns (at least) what we expect. As Jeff Epler suggests in http://mail.python.org/pipermail/python-dev/2003-September/038264.html We use a set to test the results. This fixes the test when test_urllib2 is run before test_mimetypes.
* Indented and repaired the maze of #ifdefs setting USE_RECURSION_LIMIT.Tim Peters2003-11-221-55/+58
| | | | | | | | | | | | | Indented because it was incomprehensible. "Repaired" means someone checked in a change that screwed up the multiple nesting levels, causing USE_RECURSION_LIMIT to stop getting defined on all non-LP64 boxes other than FreeBSD. Tried to repair that in a more-robust way. That error in turn caused a bogus change to get checked in to test_re.py, which I repaired earlier. This needs fresh testing on all non-Win32 platforms (Win32 never used USE_RECURSION_LIMIT, and still doesn't). Running the standard test_re.py is an adequate test.
* Reverted from rev 1.45.6.1 to rev 1.45: deep recursion is still part ofTim Peters2003-11-221-9/+7
| | | | | | | | | | | sre in 2.3, and the backport of the 2.4 version of the tests should not have been done. It got confused because someone else checked a bad change into _sre.c that caused the tests that are *supposed* to raise a recursion exception to stop doing so on some (most?) platforms. test_re passes again on Windows now. Until the bad change to _sre gets fixed, it will fail on platforms other than Windows and FreeBSD, either by "Test Failed", or by bad consequences of C stack overflow.
* More words: gave more motivation, and added cautions about the specialTim Peters2003-11-211-10/+51
| | | | dangers of trying to iterate over weak dicts.
* Add a missing import. Closes SF # 816344. Will forward port.Barry Warsaw2003-11-211-0/+1
|
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-205-17/+381
| | | | | | | | Also SF patch 843455. This is a critical bugfix, backported from 2.4 development. I don't intend to backport beyond 2.3 maint. The bugs this fixes have been there since weakrefs were introduced.
* This commit was manufactured by cvs2svn to create branchcvs2svn2003-11-201-0/+107
| | | | 'release23-maint'.
* Backport checkin:Walter Dörwald2003-11-201-4/+4
| | | | Fix typo fix.
* Backport checkin:Walter Dörwald2003-11-191-4/+4
| | | | Fix typos.