| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix for SF bug [ 784075 ] Fatal Python error: unknown scope | Jeremy Hylton | 2003-08-28 | 1 | -4/+12 |
|
|
* | Fix a crash: when sq_item failed the code continued blindly and used the | Walter Dörwald | 2003-08-18 | 1 | -3/+10 |
|
|
* | Fix refcount leak in the UnicodeError constructor: | Walter Dörwald | 2003-08-14 | 1 | -1/+1 |
|
|
* | Make filter(bool, ...) as fast as filter(None, ...). | Neil Schemenauer | 2003-08-14 | 1 | -1/+1 |
|
|
* | Add a unicode prefix to the characters in the UnicodeEncodeError and | Walter Dörwald | 2003-08-12 | 1 | -6/+6 |
|
|
* | Enhance message for UnicodeEncodeError and UnicodeTranslateError. | Walter Dörwald | 2003-08-12 | 1 | -5/+21 |
|
|
* | Fix refcounting and cut & paste error (?) in last checkin. | Michael W. Hudson | 2003-08-11 | 1 | -3/+1 |
|
|
* | Move initialization of sys.std{in,out}.encoding to Py_Initialize. | Martin v. Löwis | 2003-08-09 | 2 | -33/+51 |
|
|
* | As discussed on python-dev, changed builtin.zip() to handle zero arguments | Raymond Hettinger | 2003-08-02 | 1 | -5/+3 |
|
|
* | Patch 775605: Cygwin pthread_sigmask() workaround patch | Jason Tishler | 2003-07-22 | 1 | -1/+1 |
|
|
* | Correct previous patch looking for warnings module: sys.modules, not | Mark Hammond | 2003-07-16 | 1 | -1/+1 |
|
|
* | Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". | Mark Hammond | 2003-07-15 | 2 | -8/+40 |
|
|
* | SF patch 763201: handling of SyntaxErrors in symbol table build | Jeremy Hylton | 2003-07-15 | 1 | -33/+47 |
|
|
* | Initialize thread_id to 0 in unthreaded build. Fixes #770247. | Martin v. Löwis | 2003-07-13 | 1 | -0/+4 |
|
|
* | - fix typo | Fred Drake | 2003-07-11 | 1 | -1/+1 |
|
|
* | New function sys.getcheckinterval(), to complement setcheckinterval(). | Tim Peters | 2003-07-06 | 1 | -0/+12 |
|
|
* | An Anonymous Coward on c.l.py posted a little program with bizarre | Tim Peters | 2003-07-04 | 1 | -23/+30 |
|
|
* | Fix SF #762455, segfault when sys.stdout is changed in getattr | Neal Norwitz | 2003-06-29 | 1 | -0/+6 |
|
|
* | Add PyThreadState_SetAsyncExc(long, PyObject *). | Guido van Rossum | 2003-06-28 | 2 | -1/+47 |
|
|
* | Better error message | Jeremy Hylton | 2003-06-21 | 1 | -1/+7 |
|
|
* | Removed bytecode transformation for sequence packing/unpacking. | Raymond Hettinger | 2003-06-20 | 1 | -28/+0 |
|
|
* | Don't use the module object setattr when importing submodules. Instead, | Neil Schemenauer | 2003-06-16 | 1 | -18/+38 |
|
|
* | Use fast_next_opcode shortcut for forward jump opcodes (it's safe and | Neil Schemenauer | 2003-06-01 | 1 | -5/+5 |
|
|
* | SF bug #733667: kwargs handled incorrectly | Raymond Hettinger | 2003-05-31 | 1 | -1/+1 |
|
|
* | Don't use fast_next_opcode for JUMP_* opcodes. This fixes the problem | Neil Schemenauer | 2003-05-30 | 1 | -6/+6 |
|
|
* | Added functions CFObj_New and CFObj_Convert, general functions to convert | Jack Jansen | 2003-05-27 | 1 | -0/+3 |
|
|
* | SF bug #644345, Poor error message for augmented assign | Neal Norwitz | 2003-05-22 | 1 | -2/+2 |
|
|
* | Use macro to get length of list. | Jeremy Hylton | 2003-05-22 | 1 | -8/+2 |
|
|
* | Remove comment with very long lines that explained what the code used | Jeremy Hylton | 2003-05-22 | 1 | -3/+3 |
|
|
* | Fix for SF [ 734869 ] Lambda functions in list comprehensions | Jeremy Hylton | 2003-05-21 | 2 | -14/+24 |
|
|
* | cmp_type(): The grammar stopped allowing '=' as a comparison operator | Tim Peters | 2003-05-12 | 1 | -3/+2 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
|
|
* | Patch #612627: Add encoding attribute to file objects, and determine | Martin v. Löwis | 2003-05-10 | 1 | -0/+43 |
|
|
* | Patch #708604: Check more function results. Will backport to 2.2. | Martin v. Löwis | 2003-05-03 | 1 | -7/+37 |
|
|
* | Patch #684981: Add cleanup capability for argument parsers. Fixes 501716. | Martin v. Löwis | 2003-05-03 | 1 | -28/+90 |
|
|
* | Patch #708495: Port more stuff to OpenVMS. | Martin v. Löwis | 2003-05-03 | 2 | -0/+47 |
|
|
* | Patch #729300: Disable error message if Python is not built for threads. | Martin v. Löwis | 2003-05-01 | 1 | -1/+1 |
|
|
* | Use Tim's suggestion to fix | Michael W. Hudson | 2003-04-29 | 1 | -1/+1 |
|
|
* | Armin Rigo's fix & test for | Michael W. Hudson | 2003-04-29 | 1 | -9/+10 |
|
|
* | Revert the previous enhancement to the bytecode optimizer. | Raymond Hettinger | 2003-04-24 | 2 | -86/+9 |
|
|
* | some more error-message enhancements | Alex Martelli | 2003-04-23 | 1 | -10/+10 |
|
|
* | complete and clarify some error messages for range() | Alex Martelli | 2003-04-23 | 1 | -5/+5 |
|
|
* | PyGILState cleanup was too early - destructors called via module cleanup may ... | Mark Hammond | 2003-04-22 | 1 | -5/+5 |
|
|
* | fixed a potential refcount bug (thanks Raymond!). | Alex Martelli | 2003-04-22 | 1 | -1/+1 |
|
|
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+61 |
|
|
* | Improved the bytecode optimizer. | Raymond Hettinger | 2003-04-22 | 2 | -9/+86 |
|
|
* | handle_system_exit(): This leaked the current exception info, in | Tim Peters | 2003-04-19 | 1 | -4/+16 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 5 | -81/+265 |
|
|
* | Patch #716969: Detect thread creation failure. Will backport to 2.2. | Martin v. Löwis | 2003-04-19 | 2 | -9/+9 |
|
|
* | Patch #711835: Remove unnecessary lock operations. Will backport to 2.2. | Martin v. Löwis | 2003-04-18 | 1 | -8/+4 |
|
|