summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Patch #101810: check whether zst.avail_out is non-zero when gettingAndrew M. Kuchling2000-10-091-1/+15
| | | | | | a Z_BUF_ERROR while decompressing. If it is, assume that this means the data being decompressed is bad and raise an exception, instead of just assuming that Z_BUF_ERROR always means that more space is required.
* Fixed leapdays(). From Patch #101841, by Denis S. Otkidach.Guido van Rossum2000-10-091-2/+4
|
* Adapt test output to changed error message.Guido van Rossum2000-10-081-1/+1
|
* Be consistent in the description of audio formats: <format> <width>Guido van Rossum2000-10-081-4/+7
| | | | | | "audio". Also add AFMT_S16_NE ("native-endian"). (Somehow there's no AFMT_U16_NE.)
* Correct output.Guido van Rossum2000-10-081-1/+1
|
* It seems our sound cards can't play mulaw data. Use native-formatGuido van Rossum2000-10-081-1/+12
| | | | 16-bit signed data instead. Hope this works for you; it works for me.
* Don't use string methods to allow sharing this code with PyXML.Martin v. Löwis2000-10-071-1/+2
|
* Fixed too ambitious "nothing to repeat" check. Closes bug #114033.Fredrik Lundh2000-10-074-3/+6
|
* The test is good, but Jim forgot to check in the updated output.Fred Drake2000-10-071-0/+6
|
* Put arguments to test -z in double quotes. Fixes Bug #116325.Guido van Rossum2000-10-072-7/+7
|
* Hush the nanny.Fred Drake2000-10-073-78/+78
|
* Fix a couple of places where the descriptions of *_GET_SIZE() macros saidFred Drake2000-10-071-2/+2
| | | | | | they were similar to *_GetSize(); should be similar to *_Size(). Error noted by William Park <parkw@better.net>.
* Donn Cave <donn@oz.net>:Fred Drake2000-10-074-0/+994
| | | | Generated files for BeOS R5.
* Record bugs found when comparing the module with DOM Core Level 2.Martin v. Löwis2000-10-071-1/+4
|
* Prevent possible buffer overflow exploits under Windows. As per (the very ↵Mark Hammond2000-10-071-9/+30
| | | | quick) patch Patch #101801.
* SRE didn't handle character category followed by hyphen inside aFredrik Lundh2000-10-072-0/+4
| | | | | character class. Fix provided by Andrew Kuchling. Closes bug #116251.
* [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix ↵Marc-André Lemburg2000-10-071-11/+17
| | | | | | | for the bug reported in Bug #116174: "%% %s" % u"abc" failed due to the way string formatting delegated work to the Unicode formatting function.
* Updated test with a case which checks for the bug reported inMarc-André Lemburg2000-10-071-0/+1
|
* Possible fix for Skip's bug 116136 (sre recursion limit hit in tokenize.py).Tim Peters2000-10-071-12/+20
| | | | | | | | | | | tokenize.py has always used naive regexps for matching string literals, and that appears to trigger the sre recursion limit on Skip's platform (he has very long single-line string literals). Replaced all of tokenize.py's string regexps with the "unrolled" forms used in IDLE, where they're known to handle even absurd (multi-megabyte!) string literals without trouble. See Friedl's book for explanation (at heart, the naive regexps create a backtracking choice point for each character in the literal, while the unrolled forms create none).
* Prep Windows installer for 2.0c1: title and build number.Tim Peters2000-10-073-4/+6
|
* Fix for next iteration of SF bug 115690 (Unicode headaches in IDLE). TheTim Peters2000-10-061-0/+13
| | | | | | parsing functions in support of auto-indent weren't expecting Unicode strings, but text.get() can now return them (although it remains muddy as to exactly when or why that can happen). Fixed that with a Big Hammer.
* Add .toxml test case, as proposed by Alex Martelli in bug report #116244.Martin v. Löwis2000-10-062-1/+7
|
* minidom: access attribute value before printing itMartin v. Löwis2000-10-062-12/+14
| | | | | | correct order of constructor args in createAttributeNS pulldom: use symbolic names for uri and localnames correct usage of createAttribute and setAttributeNode signatures.
* Add a test case for reporting the file name, and for reporting an errorMartin v. Löwis2000-10-062-3/+36
| | | | for incomplete input.
* In an incremental parser, close the parser after feeding everything.Martin v. Löwis2000-10-061-0/+1
|
* Don't use a file object as system id; try to propagate the file name toMartin v. Löwis2000-10-061-1/+3
| | | | the InputSource.
* Don't report a final chunk for an external entity parser.Martin v. Löwis2000-10-061-1/+0
|
* Move translation from expat.error to SAXParseException into feed, so thatMartin v. Löwis2000-10-061-17/+19
| | | | | | | | | | callers of feed will get a SAXException. In close, feed the last chunk first before calling endDocument, so that the parser may report errors before the end of the document. Don't do anything in a nested parser. Don't call endDocument in parse; that will be called in close. Use self._source for finding the SystemID; XML_GetBase will be cleared in case of an error.
* Include more information from the docstrings.Fred Drake2000-10-061-7/+49
|
* Another name.Fred Drake2000-10-061-0/+1
|
* Donn Cave <donn@oz.net>:Fred Drake2000-10-061-0/+2
| | | | | | | Fix large file support for BeOS. This closes SourceForge patch #101773. Refer to the patch discussion for information on possible alternate fixes.
* Fix a couple of typos in docstrings.Fred Drake2000-10-061-2/+2
|