summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use re in stead of regex, so we get rid of the annoying warning during startup.Jack Jansen2001-02-215-47/+54
|
* The code to write timestamps couldn't handle negative times (and timeJack Jansen2001-02-211-0/+2
| | | | on the Mac is negativevalues > 0x80000000). Fixed.
* Whitespace normalization.Tim Peters2001-02-214-5/+4
|
* Bug #133297: cmath.asin is the same as cmath.asinh.Tim Peters2001-02-211-8/+9
| | | | | | | | | | | | | The bug report title isn't correct, but was on the right track. Rev 2.13 applied a patch intended to improve asinh and acosh, but the author mistakenly replaced the body of asin with their new code for asinh. See bug report for all the gory details. This patch: (a) puts the "new" (as of 2.13) asinh code into the asinh function; and, (b) repairs asin via what Abramowitz & Stegun say it should be (which is probably the same as what 2.12 did for asin, although I got tired of matching parentheses before being 100% sure of that -- and I don't care! The source of the old code is a mystery, and I *know* why I picked the new code.).
* Patch #103544: always compile the dl and nis modules on Unix; let's seeAndrew M. Kuchling2001-02-211-2/+9
| | | | where they break.
* Add Donovan Baarda for fixing a tortuous zlibmodule bug (but aren't they all?)Andrew M. Kuchling2001-02-211-0/+1
|
* Add test case from bug #124981: zlib decompress of sync-flushed dataAndrew M. Kuchling2001-02-212-0/+27
| | | | fails
* Patch #103373 from Donovan Baarda: This patch:Andrew M. Kuchling2001-02-211-194/+131
| | | | | | | | | | | | * fixes the zlib decompress sync flush bug as reported in bug #124981 * avoids repeat calls to (in|de)flateEnd when destroying (de)compression objects * raises exception when allocating unused_data fails * fixes memory leak when allocating unused_data fails * raises exception when allocating decompress data fails * removes vestigial code from decompress flush now that decompression returns all available data * tidies code so object compress/decompress/flush routines are consistent
* Patch #103854: raises an exception if a non-Attr node is passed toAndrew M. Kuchling2001-02-212-0/+14
| | | | | | NamedNodeMap.setNamedItem(). Martin, should I sync the PyXML tree, too, or do you want to do it? (I don't know if you're wrapping the 0.6.4 release right now.)
* Added test for patch #103473: test an unquoted cookie value containing '='Andrew M. Kuchling2001-02-212-0/+7
|
* (py-execute-region): This one's easy... kill the temporary file'sBarry Warsaw2001-02-201-2/+4
| | | | buffer after executing its contents.
* On OSX passing NULL to NewUniversalFilterProc() does not return NULL but a ↵Jack Jansen2001-02-202-12/+20
| | | | crashing UPP. This made ModalDialog (and, hence EditPythonPrefs and EasyDialogs and many others) crash. Fixed.
* Patch #103473 from dougfort: Some sites (amazon.com for one) dropAndrew M. Kuchling2001-02-201-2/+2
| | | | | | cookies that contain '=' as part of the value. This patch modifies Cookie.py to allow '=' as a legal character, and to make the key search nongreedy so it stops at the first '='.
* The code in PyImport_Import() tried to save itself a bit of work andGuido van Rossum2001-02-201-13/+7
| | | | | | | | | | | | | | save the __builtin__ module in a static variable. But this doesn't work across Py_Finalise()/Py_Initialize()! It also doesn't work when using multiple interpreter states created with PyInterpreterState_New(). So I'm ripping out this small optimization. This was probably broken since PyImport_Import() was introduced in 1997! We really need a better test suite for multiple interpreter states and repeatedly initializing. This fixes the problems Barry reported in Demo/embed/loop.c.
* import.c -> importexc.cBarry Warsaw2001-02-201-0/+0
|
* import -> importexcBarry Warsaw2001-02-201-1/+1
|
* import.c -> importexc.cBarry Warsaw2001-02-201-4/+6
| | | | Added `realclean' target.
* Rename some constants for easier readability.Tim Peters2001-02-201-8/+8
|
* Mechanical edits just so I can read it.Tim Peters2001-02-201-142/+138
|
* Updated to use new Python featuresMoshe Zadka2001-02-201-86/+86
| | | | Reindented
* Fixed to use new Python features and use more commonly accepted styleMoshe Zadka2001-02-201-18/+18
| | | | Reindented
* Changed to use the fact that str(long) doesn't produce a trailing LMoshe Zadka2001-02-201-16/+16
| | | | Reindented
* Improve accuracy. In the .tex file, note the new "% BUG:" comments: anTim Peters2001-02-202-10/+15
| | | | extra backslash is getting displayed in the generated HTML.
* Added missing \item. See also bug 133213, about damaged HTML generatedTim Peters2001-02-201-1/+2
| | | | for \code(">>>"); don't know how to fix that one.
* Flesh out PlaySound() docs enough so that SND_ALIAS isn't hopelessly confusing.Tim Peters2001-02-202-6/+35
| | | | | If someone knows how to turn the new table of guaranteed-registered system sounds into a LaTeX table, be my guest.
* SF patch #103749: implicit tuple + default argJeremy Hylton2001-02-192-3/+40
|
* Fix for implicit tuple + default arguments, courtesy of Michael Hudson.Jeremy Hylton2001-02-191-1/+3
| | | | SF patch #103749
* ConfigParser.optionxform(): Document this since it is available forFred Drake2001-02-191-0/+10
| | | | sub-classes and application code to override.
* Clean up the "docs".Tim Peters2001-02-191-7/+16
|
* Wrap a bunch of long lines.Fred Drake2001-02-191-13/+23
|
* Fix a few small typos in the docstrings.Fred Drake2001-02-191-5/+5
| | | | | get_close_matches(): Do not use %-interpolation for strings when concatenation is more efficient.
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-02-191-9/+440
| | | | | | New material on defining extension types. Thanks! (Small markup adjustments made, but this is mostly as received.)
* No longer needed since the main Makefile is "flat".Fred Drake2001-02-193-268/+0
|
* Convert to a "flat" Makefile.Fred Drake2001-02-192-381/+445
|
* Add an option allowing the user to determine where the output HTML is built.Fred Drake2001-02-191-3/+8
| | | | | Provide a way to set the paper size by name instead of only supporting separate options for each size.
* Fix markup so this document will format.Fred Drake2001-02-191-1/+1
|
* This never saw much use, so remove it.Fred Drake2001-02-193-151/+0
|
* SF Patch # 103839 byt dougfort: Allow ';' in attributesGuido van Rossum2001-02-191-1/+1
| | | | | | | sgmllib does not recognize HTML attributes containing the semicolon ';' character. This may be in accordance with the HTML spec, but there are sites that use it (excite.com) and the browsers I regularly use (IE5, Netscape, Opera) all handle it. Doug Fort Downright Software LLC
* Revert SF patch #103655Neil Schemenauer2001-02-191-2/+2
|
* Revert SF patch #103655. Martin Löwis says:Neil Schemenauer2001-02-191-1/+1
| | | | | | | | | | | | | | -shared does the following things: - invoke the linker with -G -dy -z text (the latter only if -mimpure-text was not given) - drop crt1.o from the list of objects being linked - drop -lc from the list of libraries being linked OTOH, -G is just passed through to the linker. The things that -shared does are necessary: crt1.o defines _start, and requires main, so it should not be present in a shared library. Likewise, -z text should be used to detect position-dependent code at compile time.
* Make the top-level index.html depend on the individual document index.htmlFred Drake2001-02-191-1/+5
| | | | files so that the date is properly updated on the front page.
* Checked in with Andrew's blessing, I leave the comments with whichThomas Heller2001-02-191-26/+106
| | | | | | | | | | | | | | | this was posted to distutils-sig in. Here is what I've hacked together over some spare time at the weekend. I would appreciate feedback, as I've told before I'm neither a great author, nor native english speaker, nor anything else. Mostly I've completed (and written) docs for bdist_wininst (where I'm an experert for), also I've started some stuff for the data_files and scripts option. Should I continue in this way? Would others like to jump in?
* Added entries for difflib documentation.Fred Drake2001-02-192-0/+2
|
* Documentation for the difflib module, converted from the module docstrings.Fred Drake2001-02-191-0/+315
|
* Add simple section for assert, including assert w/ lambdasJeremy Hylton2001-02-192-0/+7
|
* When running python -O, do not include blocks defined in asserts inJeremy Hylton2001-02-191-0/+11
| | | | | | | | the symbol table pass. These blocks were already ignored by the code gen pass. Both passes must visit the same set of blocks in the same order. Fixes SF buf 132820
* Add test for syntax error on "x = 1 + 1".Jeremy Hylton2001-02-194-22/+13
| | | | Move check_syntax() function into test_support.
* fix long lineJeremy Hylton2001-02-191-1/+2
|
* Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510.Jeremy Hylton2001-02-191-5/+8
|
* DOMException._get_code():Fred Drake2001-02-191-0/+3
| | | | | | New method; this is the "alternate" access to the exception code. (Useful for Python DOM implementations that support the accessor method approach to retrieving attribute values.)