summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-206-20/+491
| | | | | | | | Also SF patch 843455. This is a critical bugfix. I'll backport to 2.3 maint, but not beyond that. The bugs this fixes have been there since weakrefs were introduced.
* test_applesingle is an expected skip on Win32Raymond Hettinger2003-11-201-0/+1
|
* Added some help to OSX/Dist/README.txt, plus all the informationJack Jansen2003-11-202-62/+48
| | | | | from the OS9 readme that is still relevant. Got rid of Distributions/readme.txt.
* Fix typo fix.Walter Dörwald2003-11-201-4/+4
|
* Talk about old code: removed a reference to THINK_C.Jack Jansen2003-11-201-30/+0
|
* Got rid of macglue.h, replacing it by pymactoolbox.h where relevant.Jack Jansen2003-11-2043-303/+51
| | | | Cleaned up various things in the toolbox modules.
* Got rid of macglue.h, moved the little bit that remains relevantJack Jansen2003-11-202-39/+2
| | | | to pymactoolbox.h (where it should have been in the first place).
* No longer used.Jack Jansen2003-11-201-183/+0
|
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-2019-458/+6
|
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-197-60/+1
|
* Getting rid of one more TARGET_API_MAC_OSX.Jack Jansen2003-11-191-7/+0
|
* Patch #831747: Add skip_accept_encoding parameter to putrequest.Martin v. Löwis2003-11-193-5/+16
|
* Getting rid of code conditional on TARGET_API_MAC_*.Jack Jansen2003-11-1918-748/+2
|
* PyDoc_STR is always defined nowadays (and has been for quite some time:-)Jack Jansen2003-11-195-15/+0
|
* Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:Jack Jansen2003-11-1957-520/+57
| | | | MacOS9isms.
* Get rid of MacOS9 support. Paths are still hard-coded, that'll be fixedJack Jansen2003-11-191-16/+3
| | | | later.
* Remove deprecation of sets.Set.update().Raymond Hettinger2003-11-192-6/+1
|
* WITHOUT_FRAMEWORKS conditional code bites the dust: this was forJack Jansen2003-11-198-50/+0
| | | | pre-carbon MacOS9 support.
* Gone: all this functionality is now in the Carbon.File and Folder modules.Jack Jansen2003-11-191-1531/+0
|
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-1910-80/+0
|
* MacOS9 support is gone.Jack Jansen2003-11-191-113/+0
|
* Removing the obvious OS9-only documents§Jack Jansen2003-11-1916-2513/+0
|
* Getting rid of support for MacOS9 and earlier. This is the first step,Jack Jansen2003-11-19181-22664/+0
| | | | | and the biggest in size, but probably the easiest. Hunting through the source code comes next.
* Temporary fix for buildon on both Panther and Jaguar.Jack Jansen2003-11-191-1/+5
|
* Moved various files over from the release23-maint branch.Jack Jansen2003-11-194-29/+51
|
* Upped versionJack Jansen2003-11-191-4/+4
|
* Upped version numbers, and converted to UTF-16.Jack Jansen2003-11-191-0/+0
|
* Upped.Jack Jansen2003-11-191-4/+4
|
* This file is utf-16, not utf-8 (or ascii).Jack Jansen2003-11-191-0/+0
|
* Forward port of various fixes that were initially only done on theJack Jansen2003-11-195-16/+91
| | | | | | | | | | | | | | | | release23-maint branch: - Remember the scroll position when rebuilding the browser (as we do far too often). Fixes #824430. - Allow for the documentation to be inside PythonIDE as well as in the Python.app inside the framework (the original location for 2.3). - Updated version numbers - In PythonIDE, add the Tools/IDE directory as the second entry in sys.path in stead of as the first, leaving PythonIDE.app/Contents/Resources as the first one. - The code for setting the working directory to $HOME was both incorrect and in the wrong place, fixed. - On OSX the default location for IDE scripts is now $HOME/Library/Python/IDE-Scripts.
* Ported from 23maint branch: add icons to BuildApplet.Jack Jansen2003-11-192-0/+57
|
* Fix typos.Walter Dörwald2003-11-191-4/+4
|
* Added a siteJack Jansen2003-11-191-0/+1
|
* Upped versionJack Jansen2003-11-191-1/+1
|
* - After an exception, run.py was not setting the exception vector. NoamKurt B. Kaiser2003-11-192-1/+6
| | | | | | | Raphael suggested correcting this so pdb's postmortem pm() would work. IDLEfork Patch 844675 Modified: NEWS.txt run.py
* __init__(): The docstring was incorrect regarding how header wrappingBarry Warsaw2003-11-191-5/+4
| | | | | | gets done when maxheaderlen <> 0. The header really gets wrapped via the email.Header.Header class, which has a more sophisticated algorithm than just splitting on semi-colons.
* Generator's constructor: The documentation was incorrect regarding howBarry Warsaw2003-11-191-3/+2
| | | | | | header wrapping gets done when maxheaderlen <> 0. The header really gets wrapped via the email.Header.Header class, which has a more sophisticated algorithm than just splitting on semi-colons.
* Modified version by Bob Ippolito. It passes the just-added test_applesingleJack Jansen2003-11-181-63/+100
| | | | | after some minor mods. Fixes #803498, but should NOT be backported because the original problem seems to be unreproducable.
* Fix for [ 765456 ]: testAFakeZlib failed on platforms that use aJust van Rossum2003-11-181-0/+7
| | | | | statically linked zlib module, but since the problem it tests can't exist on these systems, simply skip it then. Will backport.
* Fix for [ 782686 ]: new files used \r as the default line separatorJust van Rossum2003-11-181-13/+8
| | | | instead of os.linesep.
* Test the applesingle decoder.Jack Jansen2003-11-181-0/+72
|
* Patch #836434: Use dlopen/dlsym on AIX if available. Also disableMartin v. Löwis2003-11-182-3/+23
| | | | _XOPEN_SOURCE on AIX 4.
* Patch #841807: Check whether a versioned libpython.so symlink is neededMartin v. Löwis2003-11-181-1/+3
| | | | in altbininstall. Backported to 2.3.
* Patch #843088: Fix typos. Backported to 2.3.Martin v. Löwis2003-11-182-3/+3
|
* Patch #794400: Let PYTHONSTARTUP influence the compiler flags.Martin v. Löwis2003-11-182-9/+16
|
* Implement straightforward suggestions from gcc warnings (remove unusedGuido van Rossum2003-11-181-3/+2
| | | | variable, add extra braces).
* Documentation for set objects.Raymond Hettinger2003-11-181-0/+37
|
* Use PySequence_Contains() instead of direct access macro.Raymond Hettinger2003-11-181-11/+5
|
* Various fixups (most suggested by Armin Rigo).Raymond Hettinger2003-11-173-40/+97
|
* Fix output spacing typoRaymond Hettinger2003-11-161-1/+1
|