summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Avoid a couple of "value computed is not used" warnings from gcc -Wall;Fred Drake2000-10-101-2/+2
| | | | | | | these computations are required for their side effects in traversing the variable arguments list. Reported by Marc-Andre Lemburg <mal@lemburg.com>.
* Note that the UserString/MutableString classes are far less efficientFred Drake2000-10-101-18/+22
| | | | | | | | | than the built-in string types (suggested by Moshe Zadka <moshez@math.huji.ac.il>). Clarified what "can be converted to a string" means. Fixed a few markup nits.
* Revise the examples not to use the "from socket import *", and adjustFred Drake2000-10-101-5/+7
| | | | one comment in the example for clarity.
* Remove duplicated text from urlopen() description, noted by Ka-PingFred Drake2000-10-101-16/+0
| | | | Yee <ping@lfw.org> and probably others as well.
* Substantially revise to handle the fact that Python CVS is no longer in aFred Drake2000-10-101-16/+35
| | | | | | | file-system accessible repository. Add a little bit of smarts to convert the cvsroot to an anonymous cvsroot the real one requires an authenticated login to SourceForge; this avoids the SSH startup delay when doing the checkout or export to get a fresh copy of the tree.
* Make it clear that copy_reg.pickle() should not be used for classes, butFred Drake2000-10-101-5/+6
| | | | | | only for extension types. This partially fixes SourceForge bug #116295.
* Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-1016-38/+40
|
* Minor nit fixes based on suggestions from Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-101-4/+14
| | | | Added "See also" section with relevant RFC references.
* Better synopsis based on suggestion from Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-101-2/+3
|
* Better synopses based on suggestions from Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-102-5/+4
|
* Move the documentation for the mutex module to be with the threadingFred Drake2000-10-101-1/+1
| | | | | and queue-management modules, since that is where the general context for use in most cases.
* Place the full text of the CNRI license verbatim in the LICENSE file.Guido van Rossum2000-10-101-5/+67
| | | | Who know where the handle will point to tomorrow?
* This commit was manufactured by cvs2svn to create tag 'r20c1'.v2.0c1cvs2svn2000-10-091-0/+1
|
* When the classes in wave.py opened files themselves, their .close() methodsTim Peters2000-10-091-7/+19
| | | | | | | didn't bother to close the files. This caused the new test_wave test to fail under Windows, as Windows won't let you delete a file that's open. Fixed that by ensuring the wave read & write classes' .close() and __del__ methods close files that were opened by their constructors.
* The usual.Guido van Rossum2000-10-0919-262/+511
|
* The Usual.Jeremy Hylton2000-10-092-438/+412
|
* the usualJeremy Hylton2000-10-091-2/+2
|
* add note explaining what a release candidate isJeremy Hylton2000-10-091-0/+10
|
* This file is no longer used.Fred Drake2000-10-091-27/+0
|
* Repaired IDLE Unicode bug description.Tim Peters2000-10-091-2/+5
| | | | Added tokenize.py bugfix info.
* Another generated file...Fred Drake2000-10-091-7/+7
|
* Remove macro that mentions DL_EXPORT_HEADER; it caused a spurious warningFred Drake2000-10-092-466/+485
| | | | | from autoheader and is not useful anymore. (Approved by Donn Cave.)
* WAVE test + bugfix contributor.Guido van Rossum2000-10-091-0/+1
|
* wave test outputGuido van Rossum2000-10-091-0/+1
|
* Simple test suite for wave.py by Jean-Claude Rimbault (with someGuido van Rossum2000-10-091-0/+34
| | | | changes to avoid using assert).
* Paul Prescod <paul@prescod.net>:Fred Drake2000-10-091-0/+7
| | | | Correct the chaining between siblings.
* Fix by Jean-Claude Rimbault [ Bug #116271 ] -- the WAVE header wasGuido van Rossum2000-10-091-1/+1
| | | | | never written properly because the '4' length indicators for the 's' format characters were missing.
* Move the test for confirmation that all nodes have been freed into theFred Drake2000-10-092-33/+72
| | | | | | driver code, so that each test gets this; it had been done inconsistently. Remove the lines that set the variables holding dom objects to None; not needed since the interpreter cleans up locals on function return.
* And another.Guido van Rossum2000-10-091-0/+1
|
* Checking in three Darwin-specific patches.Guido van Rossum2000-10-092-460/+462
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tony Lownds: [ Patch #101816 ] Fixes shared modules on Mac OS X 1. Mac OS X is recognized by the Next-ish host recognition code as "Darwin/1.2" 2. When specifying just --with-dyld, modules can compile as shared 3. --with-dyld and --with-next-framework, modules can compile as shared 4. --with-suffix=.exe, and Lib/plat-darwin1.2 is being made, the regen script invokes python as python.exe [I had to reformat this patch a bit to make it work. Please test!] Dan Wolfe: [ Patch #101823 ] Fix Darwin POSIX Thread redefinition The patch below fixes the redefinition problem in Darwin with _POSIX_THREADS. I'm not sure if this is the correct long term fix but for now it fixes the problem and the fix is specific to Darwin. Dan Wolfe: [ Patch #101824 ] On Darwin, remove unrecognized option `-OPT:Olimit=0' After many, many, many compiles, I finally got itchy of this warning cluttering up the output... so I scratched (Darwin configs only) and it's gone! :-)
* typoJeremy Hylton2000-10-091-1/+1
|
* Use python$EXE instead of python, for Darwin. (Patch by TonyGuido van Rossum2000-10-091-4/+4
| | | | | | | | Lownds. (#101816) [Note: I'm not sure that this is really the right fix. Surely Darwin doesn't require you to say "python.exe" everywhere??? Even Windows doesn't! Or am I misunderstanding the point?]
* For Darwin, export EXE (needed by Lib/plat-generic/regen checkin, toGuido van Rossum2000-10-091-0/+1
| | | | follow). Adapted from a patch by Tony Lownds. (#101816)
* One more name.Guido van Rossum2000-10-091-0/+1
|
* Do not forget to build the acks.html file when building "all"!Fred Drake2000-10-091-1/+1
|
* added better description of BeOS changes from Donn CaveJeremy Hylton2000-10-091-2/+7
|
* Summary of changes between 2.0b2 and 2.0c1Jeremy Hylton2000-10-091-1/+124
|
* new nameJeremy Hylton2000-10-091-0/+1
|
* Work around annoyances in LaTeX2HTML.Fred Drake2000-10-092-2/+2
|
* Push xmllib to the end of the markup chapter since it is deprecated.Fred Drake2000-10-091-1/+1
|
* Another name.Fred Drake2000-10-091-0/+1
|
* Donn Cave <donn@oz.net>:Fred Drake2000-10-092-521/+518
| | | | | | | Update for BeOS. This closes SourceForge patch #101774. Also fix typo in a comment.
* Donn Cave <donn@oz.net>:Fred Drake2000-10-092-12/+0
| | | | | | | Removed DL_EXPORT_HEADER -- only needed on BeOS, and not needed there anymore. This closes SourceForge patch #101775.
* Donn Cave <donn@oz.net>:Fred Drake2000-10-091-9/+8
| | | | | | Revise BeOS support. This closes SourceForge patch #101776.
* Donn Cave <donn@oz.net>:Fred Drake2000-10-091-1/+1
| | | | | | Updated to work better with BeOS. This closes SourceForge patch #101777.
* Updated version from Donn Cave <donn@oz.net>.Fred Drake2000-10-091-151/+58
| | | | This closes SourceForge patch #101778.
* _exceptions: Format a missing system id as <unknown>.Martin v. Löwis2000-10-092-5/+7
| | | | expatreader: Use the error handler instead of raising exception directly.
* Denis S. Otkidach <ods@users.sourceforge.net>:Fred Drake2000-10-091-1/+1
| | | | | | Correct description of leapdays() function. This closes SourceForge patch #101840.
* bump patchlevel to 2.0c1Jeremy Hylton2000-10-091-4/+4
|
* read in a .pyc file and disassemble the code objectsJeremy Hylton2000-10-091-0/+39
|