Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | doodedoodedoo on the way to 2.4 final | Anthony Baxter | 2004-11-30 | 2 | -42/+6 |
| | |||||
* | REVERT revision 1.260; the trunk is FROZEN. | Fred Drake | 2004-11-29 | 1 | -1/+1 |
| | | | | | This change can be made on the trunk and release24-maint branch after the trunk is unfrozen. | ||||
* | Bump buildno for 2.4 release | Martin v. Löwis | 2004-11-29 | 2 | -3/+5 |
| | |||||
* | Fix a nit. | Raymond Hettinger | 2004-11-29 | 1 | -1/+1 |
| | |||||
* | Fix argument order in pure python version of nsmallest() and nlargest(). | Raymond Hettinger | 2004-11-29 | 2 | -4/+7 |
| | |||||
* | RFC 2822 describes the characters allowed in a header field name. Conform to | Barry Warsaw | 2004-11-29 | 2 | -1/+19 |
| | | | | this, and add test cases. | ||||
* | preparing for 2.4 final (wooooooo!) | Anthony Baxter | 2004-11-29 | 3 | -5/+5 |
| | |||||
* | There's likely nothing more to do to the email package before Python 2.4 is | Barry Warsaw | 2004-11-29 | 1 | -1/+1 |
| | | | | final, so I'm marking email's version number as "3.0" (e.g. final). | ||||
* | Whitespace normalization. | Tim Peters | 2004-11-28 | 1 | -6/+6 |
| | |||||
* | Fix for SF bug #1072623. When the last line of the input string does not end | Barry Warsaw | 2004-11-28 | 2 | -1/+16 |
| | | | | | | | | | in a newline, and it's an end boundary, the FeedParser wasn't recognizing it as such. Tweak the regexp to make the ending linesep optional. For grins, clear self._partial when closing the BufferedSubFile. Added a test case. | ||||
* | Fix typo in comment. | Walter Dörwald | 2004-11-25 | 1 | -1/+1 |
| | |||||
* | Fix typo. | Raymond Hettinger | 2004-11-25 | 1 | -1/+1 |
| | |||||
* | Clarify the ordering of dictionary keys. | Raymond Hettinger | 2004-11-25 | 1 | -2/+4 |
| | |||||
* | Make sure the money formatting recipe can doesn't run out of digits | Raymond Hettinger | 2004-11-25 | 1 | -8/+14 |
| | | | | to the right of the decimal point. | ||||
* | Rename a static variable "history_length" to "_history_length". | Hye-Shik Chang | 2004-11-25 | 1 | -6/+6 |
| | | | | | GNU readline exports a global variable that has such a name already and the collision makes gcc4 doesn't compile the source. | ||||
* | Following a LtU thread, change introductory paragraph of decimal section | Andrew M. Kuchling | 2004-11-25 | 1 | -7/+9 |
| | |||||
* | SF patch #1071739 (by Christos Georgiou) | Fredrik Lundh | 2004-11-24 | 1 | -4/+9 |
| | | | | | This patch offers a better explanation in case the MS VC++ (free) toolkit is installed but the .NET Framework SDK is not. | ||||
* | add missing dependency | Fred Drake | 2004-11-24 | 1 | -0/+1 |
| | |||||
* | SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 | Raymond Hettinger | 2004-11-24 | 2 | -11/+11 |
| | |||||
* | SF bug #1071566: moneyfmt recipe in decimal documentation has error | Raymond Hettinger | 2004-11-24 | 1 | -1/+3 |
| | |||||
* | Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the | Brett Cannon | 2004-11-24 | 1 | -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. Kaiser | 2004-11-23 | 2 | -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 there | Johannes Gijsbers | 2004-11-23 | 1 | -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 use | Tim Peters | 2004-11-22 | 1 | -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 Peters | 2004-11-22 | 1 | -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é Lemburg | 2004-11-22 | 4 | -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öwis | 2004-11-21 | 1 | -0/+1 |
| | |||||
* | Add 'linux2' as one of the platforms that does not use the echo service as one | Brett Cannon | 2004-11-20 | 1 | -1/+2 |
| | | | | of the test possiblities for testGetServBy(). | ||||
* | Fixed quantize syntax. | Facundo Batista | 2004-11-20 | 1 | -1/+1 |
| | |||||
* | On OpenBSD, terminating IDLE with ctrl-c from the command line caused a | Kurt B. Kaiser | 2004-11-19 | 3 | -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 disclaimer | Andrew M. Kuchling | 2004-11-19 | 1 | -3/+4 |
| | |||||
* | Last pass to fill in contributor names; remove stray 'contributed by' from ↵ | Andrew M. Kuchling | 2004-11-19 | 1 | -10/+12 |
| | | | | the incompatible changes section; remove some XXX comments | ||||
* | It's GTK+, apparently; remove XXX comment | Andrew M. Kuchling | 2004-11-19 | 1 | -2/+0 |
| | |||||
* | Bump version number; update patch/bug counts; bet that the final release ↵ | Andrew M. Kuchling | 2004-11-19 | 1 | -6/+5 |
| | | | | will be in December | ||||
* | This commit was manufactured by cvs2svn to create tag 'r24c1'.v2.4c1 | cvs2svn | 2004-11-18 | 1 | -0/+1 |
| | |||||
* | 2.4rc1 | Anthony Baxter | 2004-11-18 | 4 | -4/+4 |
| | |||||
* | Mark PyRange_New() as deprecated. | Raymond Hettinger | 2004-11-18 | 1 | -1/+2 |
| | |||||
* | SF patch #1068456: small update for pdb docs | Raymond Hettinger | 2004-11-18 | 1 | -0/+7 |
| | |||||
* | Add missing have_tcl conditions | Martin v. Löwis | 2004-11-18 | 1 | -8/+15 |
| | |||||
* | SF bug #1066036: Typo about PyErr_WriteUnraisable() | Raymond Hettinger | 2004-11-18 | 1 | -1/+1 |
| | |||||
* | SF bug #1067018: Obsolete info in Tutorial 9.1 | Raymond Hettinger | 2004-11-18 | 1 | -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 typo | Raymond Hettinger | 2004-11-18 | 1 | -2/+2 |
| | | | | Make a minor clarification between "written" and "displayed". | ||||
* | Comment for performance measurement. | Raymond Hettinger | 2004-11-18 | 1 | -0/+8 |
| | |||||
* | Remove tempfile after use in test_call_string. | Peter Astrand | 2004-11-17 | 1 | -1/+2 |
| | | | | In test_args_string, remove the tempfile before assertEqual. | ||||
* | split functionality into pystack and pystackv commands. The former will | Skip Montanaro | 2004-11-17 | 1 | -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. Kaiser | 2004-11-16 | 1 | -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. Kaiser | 2004-11-16 | 1 | -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 rc1 | Anthony Baxter | 2004-11-15 | 1 | -4/+4 |
| | |||||
* | Fix pprint to be able to handle objects that don't have a __repr__ | Walter Dörwald | 2004-11-15 | 1 | -2/+2 |
| | | | | attribute. Fixes SF bug #1065456. | ||||
* | SF bug 1066438: datetime.replace method description error | Tim Peters | 2004-11-15 | 1 | -7/+7 |
| | | | | Repair typo in example. |