| Commit message (Expand) | Author | Age | Files | Lines |
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 1 | -17/+20 |
|
|
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 1 | -53/+134 |
|
|
* | Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef. | Jack Jansen | 2001-09-01 | 1 | -0/+4 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -1/+7 |
|
|
* | When re-writing a factor containing a unary negation of a literal, only | Fred Drake | 2001-08-30 | 1 | -0/+3 |
|
|
* | Do the int inlining only if the type is really an int, not whenever | Guido van Rossum | 2001-08-30 | 1 | -6/+9 |
|
|
* | fix for part of bug #453523: disable unmarshalling of code objects in | Michael W. Hudson | 2001-08-30 | 1 | -1/+7 |
|
|
* | Removed unreachable goto statement to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -1/+0 |
|
|
* | Removed some unreachable break statements to silence SGI compiler. | Sjoerd Mullender | 2001-08-30 | 1 | -3/+0 |
|
|
* | Add a new function imp.lock_held(), and use it to skip test_threaded_import | Tim Peters | 2001-08-30 | 1 | -0/+19 |
|
|
* | SF bug [#456252] Python should never stomp on [u]intptr_t. | Tim Peters | 2001-08-29 | 1 | -2/+2 |
|
|
* | GUSI on the Mac creates threads with a default stack size of 20KB, which is | Jack Jansen | 2001-08-29 | 1 | -1/+21 |
|
|
* | marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit | Tim Peters | 2001-08-29 | 1 | -12/+24 |
|
|
* | The "O!" format code should implement an isinstance() test | Guido van Rossum | 2001-08-28 | 1 | -1/+1 |
|
|
* | If an integer constant can't be generated from an integer literal | Jeremy Hylton | 2001-08-27 | 1 | -5/+2 |
|
|
* | Refer to the toolbox modules by their official name (Carbon.AE), not the inte... | Jack Jansen | 2001-08-27 | 1 | -59/+59 |
|
|
* | PyErr_Format(): Factor out most of this code into | Barry Warsaw | 2001-08-24 | 1 | -114/+1 |
|
|
* | Add 'super' builtin type. | Guido van Rossum | 2001-08-24 | 1 | -0/+3 |
|
|
* | Add new built-in type 'getset' (PyGetSet_Type). | Guido van Rossum | 2001-08-23 | 1 | -0/+3 |
|
|
* | Mac toolbox modules have gotten an _ prepended to their name. | Jack Jansen | 2001-08-23 | 1 | -58/+58 |
|
|
* | When an inlined operation on two small ints causes overflow, don't | Guido van Rossum | 2001-08-23 | 1 | -32/+24 |
|
|
* | Introduce OverflowWarning -- to be issued when short int operations | Guido van Rossum | 2001-08-23 | 1 | -0/+7 |
|
|
* | Fix SF bug [ #450245 ] Error in parsing future stmts | Jeremy Hylton | 2001-08-20 | 1 | -3/+18 |
|
|
* | Fix SF bug #443600: | Guido van Rossum | 2001-08-18 | 1 | -15/+46 |
|
|
* | Fix for bug [#452230] future division isn't propagated. | Tim Peters | 2001-08-17 | 1 | -1/+8 |
|
|
* | A fiddled version of the rest of Michael Hudson's SF patch | Tim Peters | 2001-08-17 | 1 | -8/+26 |
|
|
* | ceval, PyEval_MergeCompilerFlags: wasn't merging in the | Tim Peters | 2001-08-17 | 1 | -6/+3 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 7 | -14/+80 |
|
|
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 3 | -168/+138 |
|
|
* | Oops. Two fixes for SF bug #422004 are not needed. :-) | Guido van Rossum | 2001-08-16 | 1 | -1/+0 |
|
|
* | Bunchathings: | Guido van Rossum | 2001-08-16 | 1 | -5/+6 |
|
|
* | Fix SF bug [ #450909 ] __future__.division fails at prompt | Jeremy Hylton | 2001-08-14 | 1 | -2/+6 |
|
|
* | Fixed typo in comment leading up to _PyImport_FixupExtension(). | Barry Warsaw | 2001-08-13 | 1 | -1/+1 |
|
|
* | Py_Initialize(): Apply patch by Jürgen Hermann to call | Barry Warsaw | 2001-08-13 | 1 | -0/+1 |
|
|
* | Remove much dead code from ceval.c | Jeremy Hylton | 2001-08-12 | 1 | -220/+18 |
|
|
* | SF Patch [ 429024 ] deal with some unary ops at compile time | Jeremy Hylton | 2001-08-12 | 1 | -3/+66 |
|
|
* | Patch by Jonathan Wight (slightly reformatted) to forestall loading the | Jack Jansen | 2001-08-11 | 1 | -3/+7 |
|
|
* | Remove st_nested_scopes from struct symtable, | Jeremy Hylton | 2001-08-11 | 1 | -130/+46 |
|
|
* | st_nested_scopes was uninitialized trash. Jeremy should fix in a better | Tim Peters | 2001-08-11 | 1 | -0/+6 |
|
|
* | Refactor future feature handling | Jeremy Hylton | 2001-08-10 | 4 | -52/+17 |
|
|
* | Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead of | Guido van Rossum | 2001-08-09 | 1 | -5/+1 |
|
|
* | Got rid of unused includes. | Jack Jansen | 2001-08-08 | 1 | -22/+2 |
|
|
* | Split macglue.c into two: a new mactoolboxglue.c (in ./Python) | Jack Jansen | 2001-08-08 | 1 | -0/+430 |
|
|
* | Put conditional S_IFMT definition into pyport.h. | Martin v. Löwis | 2001-08-08 | 1 | -5/+0 |
|
|
* | Put conditional S_ISDIR definition(s) into pyport.h. | Martin v. Löwis | 2001-08-08 | 2 | -5/+1 |
|
|
* | Repair the Windows build (S_ISDIR() macro doesn't exist). | Tim Peters | 2001-08-08 | 1 | -1/+1 |
|
|
* | Patch #448227: Raise an exception when a directory is passed to execfile. | Martin v. Löwis | 2001-08-08 | 1 | -4/+23 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 4 | -196/+264 |
|
|
* | - Rename PyType_InitDict() to PyType_Ready(). | Guido van Rossum | 2001-08-07 | 1 | -1/+4 |
|
|
* | Another bug fix for recent import * warning (caught by Thomas Wouters) | Jeremy Hylton | 2001-08-06 | 1 | -3/+3 |
|
|