summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* When re-writing a factor containing a unary negation of a literal, onlyFred Drake2001-08-301-0/+3
* Do the int inlining only if the type is really an int, not wheneverGuido van Rossum2001-08-301-6/+9
* fix for part of bug #453523: disable unmarshalling of code objects inMichael W. Hudson2001-08-301-1/+7
* Removed unreachable goto statement to silence SGI compiler.Sjoerd Mullender2001-08-301-1/+0
* Removed some unreachable break statements to silence SGI compiler.Sjoerd Mullender2001-08-301-3/+0
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-301-0/+19
* SF bug [#456252] Python should never stomp on [u]intptr_t.Tim Peters2001-08-291-2/+2
* GUSI on the Mac creates threads with a default stack size of 20KB, which isJack Jansen2001-08-291-1/+21
* marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bitTim Peters2001-08-291-12/+24
* The "O!" format code should implement an isinstance() testGuido van Rossum2001-08-281-1/+1
* If an integer constant can't be generated from an integer literalJeremy Hylton2001-08-271-5/+2
* Refer to the toolbox modules by their official name (Carbon.AE), not the inte...Jack Jansen2001-08-271-59/+59
* PyErr_Format(): Factor out most of this code intoBarry Warsaw2001-08-241-114/+1
* Add 'super' builtin type.Guido van Rossum2001-08-241-0/+3
* Add new built-in type 'getset' (PyGetSet_Type).Guido van Rossum2001-08-231-0/+3
* Mac toolbox modules have gotten an _ prepended to their name.Jack Jansen2001-08-231-58/+58
* When an inlined operation on two small ints causes overflow, don'tGuido van Rossum2001-08-231-32/+24
* Introduce OverflowWarning -- to be issued when short int operationsGuido van Rossum2001-08-231-0/+7
* Fix SF bug [ #450245 ] Error in parsing future stmtsJeremy Hylton2001-08-201-3/+18
* Fix SF bug #443600:Guido van Rossum2001-08-181-15/+46
* Fix for bug [#452230] future division isn't propagated.Tim Peters2001-08-171-1/+8
* A fiddled version of the rest of Michael Hudson's SF patchTim Peters2001-08-171-8/+26
* ceval, PyEval_MergeCompilerFlags: wasn't merging in theTim Peters2001-08-171-6/+3
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-177-14/+80
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-163-168/+138
* Oops. Two fixes for SF bug #422004 are not needed. :-)Guido van Rossum2001-08-161-1/+0
* Bunchathings:Guido van Rossum2001-08-161-5/+6
* Fix SF bug [ #450909 ] __future__.division fails at promptJeremy Hylton2001-08-141-2/+6
* Fixed typo in comment leading up to _PyImport_FixupExtension().Barry Warsaw2001-08-131-1/+1
* Py_Initialize(): Apply patch by Jürgen Hermann to callBarry Warsaw2001-08-131-0/+1
* Remove much dead code from ceval.cJeremy Hylton2001-08-121-220/+18
* SF Patch [ 429024 ] deal with some unary ops at compile timeJeremy Hylton2001-08-121-3/+66
* Patch by Jonathan Wight (slightly reformatted) to forestall loading theJack Jansen2001-08-111-3/+7
* Remove st_nested_scopes from struct symtable,Jeremy Hylton2001-08-111-130/+46
* st_nested_scopes was uninitialized trash. Jeremy should fix in a betterTim Peters2001-08-111-0/+6
* Refactor future feature handlingJeremy Hylton2001-08-104-52/+17
* Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead ofGuido van Rossum2001-08-091-5/+1
* Got rid of unused includes.Jack Jansen2001-08-081-22/+2
* Split macglue.c into two: a new mactoolboxglue.c (in ./Python)Jack Jansen2001-08-081-0/+430
* Put conditional S_IFMT definition into pyport.h.Martin v. Löwis2001-08-081-5/+0
* Put conditional S_ISDIR definition(s) into pyport.h.Martin v. Löwis2001-08-082-5/+1
* Repair the Windows build (S_ISDIR() macro doesn't exist).Tim Peters2001-08-081-1/+1
* Patch #448227: Raise an exception when a directory is passed to execfile.Martin v. Löwis2001-08-081-4/+23
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-084-196/+264
* - Rename PyType_InitDict() to PyType_Ready().Guido van Rossum2001-08-071-1/+4
* Another bug fix for recent import * warning (caught by Thomas Wouters)Jeremy Hylton2001-08-061-3/+3
* Fix error message for import * in function/class scopeJeremy Hylton2001-08-061-1/+1
* Fix SF bug [ #445474 ] warn about import * inside functionsJeremy Hylton2001-08-061-0/+5
* Derived from SF patch #446899 Permit import of .pyw under Windows, fromTim Peters2001-08-041-5/+14
* Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed,Fred Drake2001-08-041-2/+6