summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add missing dependencyFred Drake2004-11-241-0/+1
|
* SF bug #1071588 coercing decimal to int doesn't work between -1 and 1Raymond Hettinger2004-11-242-11/+11
|
* SF bug #1071566: moneyfmt recipe in decimal documentation has errorRaymond Hettinger2004-11-241-1/+3
|
* Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to theBrett Cannon2004-11-241-1/+3
| | | | | | Windows GDI directly and thus does not need a DISPLAY environment variable. Thanks Jason Tishler.
* Hye-Shik Chang's fix for Bug 875692.Kurt B. Kaiser2004-11-232-0/+19
| | | | | | | | | Improve signal handling, especially when using threads, by forcing an early re-execution of PyEval_EvalFrame() "periodic" code when things_to_do is not cleared by Py_MakePendingCalls(). M Misc/NEWS M Python/ceval.c
* Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably thereJohannes Gijsbers2004-11-231-1/+5
| | | | | | | (http://www.cygwin.com/faq/faq_3.html#SEC41). Also check whether onerror has actually been called so this test will fail on assertion instead of on trying to chmod a non-existent file.
* os.walk(): Changed the "sum of bytes consumed by files" example to useTim Peters2004-11-221-1/+1
| | | | | | a generator expression instead of a listcomp. Not a backport candidate (genexps are new in 2.4).
* SF bug 1071087: os.walk example for deleting a full tree is sometime wrong.Tim Peters2004-11-221-5/+5
| | | | | | | | | | | Clarify that the example assumes no links are present; the point of the example is to illustrate a need for topdown=False, not to wrestle with platform-dependent link convolutions. Also spell os.path.join() out in full, instead of using a shortcut import. The bug reporter was confused by that too, and it's clearer this way. Bugfix candidate; but I don't intend to backport it.
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-224-7/+25
| | | | | | | | and its usage in PyLocale_strcoll(). Clarify the documentation on this. Thanks to Andreas Degert for pointing this out.
* Include site-packages directory.Martin v. Löwis2004-11-211-0/+1
|
* Add 'linux2' as one of the platforms that does not use the echo service as oneBrett Cannon2004-11-201-1/+2
| | | | of the test possiblities for testGetServBy().
* Fixed quantize syntax.Facundo Batista2004-11-201-1/+1
|
* On OpenBSD, terminating IDLE with ctrl-c from the command line caused aKurt B. Kaiser2004-11-193-2/+12
| | | | | | | | stuck subprocess MainThread because only the SocketThread was exiting. M NEWS.txt M idlever.py M run.py
* Fill in the benchmark figures, bogus or not; add a disclaimerAndrew M. Kuchling2004-11-191-3/+4
|
* Last pass to fill in contributor names; remove stray 'contributed by' from ↵Andrew M. Kuchling2004-11-191-10/+12
| | | | the incompatible changes section; remove some XXX comments
* It's GTK+, apparently; remove XXX commentAndrew M. Kuchling2004-11-191-2/+0
|
* Bump version number; update patch/bug counts; bet that the final release ↵Andrew M. Kuchling2004-11-191-6/+5
| | | | will be in December
* This commit was manufactured by cvs2svn to create tag 'r24c1'.v2.4c1cvs2svn2004-11-181-0/+1
|
* 2.4rc1Anthony Baxter2004-11-184-4/+4
|
* Mark PyRange_New() as deprecated.Raymond Hettinger2004-11-181-1/+2
|
* SF patch #1068456: small update for pdb docsRaymond Hettinger2004-11-181-0/+7
|
* Add missing have_tcl conditionsMartin v. Löwis2004-11-181-8/+15
|
* SF bug #1066036: Typo about PyErr_WriteUnraisable()Raymond Hettinger2004-11-181-1/+1
|
* SF bug #1067018: Obsolete info in Tutorial 9.1Raymond Hettinger2004-11-181-9/+0
| | | | | | Removed a section that is out of date after type/class unification. While there was still some validity, the paragraph offered more confusion that insight.
* SF bug #1067023: A small typoRaymond Hettinger2004-11-181-2/+2
| | | | Make a minor clarification between "written" and "displayed".
* Comment for performance measurement.Raymond Hettinger2004-11-181-0/+8
|
* Remove tempfile after use in test_call_string.Peter Astrand2004-11-171-1/+2
| | | | In test_args_string, remove the tempfile before assertEqual.
* split functionality into pystack and pystackv commands. The former willSkip Montanaro2004-11-171-4/+19
| | | | | | | work with core dumps because it avoids calling any Python API routines. The latter prints all the local variable values as well as the stack frames but won't work with core dumps because it relies on _PyObject_Dump to print variables.
* Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"Kurt B. Kaiser2004-11-161-0/+4
| | | | | button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
* Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"Kurt B. Kaiser2004-11-161-0/+3
| | | | | | | button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. M configDialog.py
* preparing for rc1Anthony Baxter2004-11-151-4/+4
|
* Fix pprint to be able to handle objects that don't have a __repr__Walter Dörwald2004-11-151-2/+2
| | | | attribute. Fixes SF bug #1065456.
* SF bug 1066438: datetime.replace method description errorTim Peters2004-11-151-7/+7
| | | | Repair typo in example.
* Back out rev 1.96; see #1009389.Martin v. Löwis2004-11-141-1/+1
|
* avoid applying :active to anchors that are only link targetsFred Drake2004-11-131-1/+1
| | | | (no href attribute)
* The change in the linecache.checkcache() signature at rev 1.13 caused IDLE ↵Kurt B. Kaiser2004-11-132-6/+11
| | | | | | | | | to exit when an exception was raised while running w/o the subprocess. Python Bug 1063840 M NEWS.txt M PyShell.py
* add another way to specify an alternate name for the documentation set,Fred Drake2004-11-132-1/+12
| | | | so that this is harder to forget to do for development of new styles
* SF bug 1065388: calendar day/month name lookup too slowTim Peters2004-11-133-16/+35
| | | | | | __getitem__() methods: compute only the new spellings needed to satisfy the given indexing object. This is purely an optimization (it should have no effect on visible semantics).
* Patch #1050475: Fix various x86_64 build issuesMartin v. Löwis2004-11-133-3/+11
| | | | | | regrtest.py: skip rgbimg and imageop as they are not built on 64-bit systems. _tkinter.c: replace %.8x with %p for printing pointers. setup.py: add lib64 into the library directories.
* if we treat \LaTeX specially, we need to do the same for \TeXFred Drake2004-11-131-0/+1
|
* - wrap a long lineFred Drake2004-11-131-1/+5
| | | | - add directory information for the "What's New" document
* avoid the inane markup generated by LaTeX2HTML for \LaTeX; that simplyFred Drake2004-11-131-2/+2
| | | | doesn't look right in HTML
* Add options to regrtest.py to make it possible to specify where to putWalter Dörwald2004-11-121-8/+18
| | | | the coverage files when -T is used.
* SF bug 1054821: difflib HtmlDiff() extra space on inserted 1 character linesTim Peters2004-11-121-2/+2
| | | | Simple correction from the code's author (Dan Gass).
* Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64Peter Astrand2004-11-121-1/+6
| | | | TEMP dirs with {memb} strings. Fixes #1063571.
* On second thought: "Errors should never pass silently", so barf when aJust van Rossum2004-11-122-10/+16
| | | | string contains control chars that are illegal for XML
* testing control chars and non-dict root objectsJust van Rossum2004-11-121-0/+16
|
* - \f is not a valid XML characterJust van Rossum2004-11-121-3/+4
| | | | - reformatted regex pattern, use r"" consistently
* reordered a couple of thingsJust van Rossum2004-11-121-5/+6
|
* SF bug 1060644. Better explanation of min() and max() methods. Thanks ↵Facundo Batista2004-11-121-4/+8
| | | | Raymond Hettinger and Tim Peters.