summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* A nice little speed-up for filter():Guido van Rossum2002-08-161-13/+17
* Patch #550192: Set softspace to 0 in raw_input().Martin v. Löwis2002-08-141-18/+22
* Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.Marc-André Lemburg2002-08-111-34/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-1/+1
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-48/+2
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-92/+92
* Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.Raymond Hettinger2002-06-051-43/+1
* Change name from string to basestringNeal Norwitz2002-05-311-1/+1
* - A new type object, 'string', is added. This is a common base typeGuido van Rossum2002-05-241-0/+1
* SF bug 555042: zip() may trigger MemoryError.Tim Peters2002-05-121-2/+7
* builtin_zip(): Take a good guess at how big the result list will be,Tim Peters2002-04-291-15/+42
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-2/+2
* - New builtin function enumerate(x), from PEP 279. Example:Guido van Rossum2002-04-261-0/+1
* Mass checkin of universal newline support.Jack Jansen2002-04-141-1/+1
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-8/+11
* Patch #494045: patches errno and stat to cope on plan9.Martin v. Löwis2002-03-091-15/+27
* Docstring for filter(): Someone on the Tutor list reasonably complainedTim Peters2002-03-091-5/+5
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Fix for SF bug [ #492403 ] exec() segfaults on closure's func_codeJeremy Hylton2001-12-131-1/+1
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-1/+1
* SF patch 473749 compile under OS/2 VA C++, from Michael Muller.Tim Peters2001-11-051-0/+4
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-291-1/+1
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-0/+15
* SF patch #471852 (anonymous) notes that getattr(obj, name, default)Guido van Rossum2001-10-161-1/+3
* Implement isinstance(x, (A, B, ...)). Note that we only allow tuples,Guido van Rossum2001-10-071-2/+4
* Get rid of builtin_open() entirely (the C code and docstring, not theTim Peters2001-09-131-20/+3
* _PyBuiltin_Init(): For clarity, macroize this purely repetitive code.Tim Peters2001-09-131-49/+25
* SF bug [#460467] file objects should be subclassable.Tim Peters2001-09-131-22/+13
* Rename 'getset' to 'property'.Guido van Rossum2001-09-061-2/+2
* builtin_execfile(): initialize another local that the GCC on leroyGuido van Rossum2001-09-051-1/+1
* At Guido's suggestion, here's a new C API function, PyObject_Dir(), likeTim Peters2001-09-041-137/+1
* builtin_dir(): Treat classic classes like types. Use PyDict_Keys insteadTim Peters2001-09-041-17/+20
* Make dir() wordier (see the new docstring). The new behavior is a mixedTim Peters2001-09-031-53/+134
* 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
* 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
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+12
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-100/+59
* Put conditional S_ISDIR definition(s) into pyport.h.Martin v. Löwis2001-08-081-1/+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
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-437/+38
* Do for hasattr() what was done for getattr()Jeremy Hylton2001-07-301-0/+11
* Fix for SF byg [ #420304 ] getattr function w/ defaultJeremy Hylton2001-07-301-0/+11
* Fix for SF bug [ #443866 ] Evaluating func_code causing core dumpJeremy Hylton2001-07-301-1/+7
* Undoing the UCS-4 patch addition which caused unichr() to returnMarc-André Lemburg2001-07-261-1/+11
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-8/+8
* Re-add 'advanced' xrange features, adding DeprecationWarnings as discussedThomas Wouters2001-07-091-1/+1
* Complete the xrange-simplification checkins: call PyRange_New() withGuido van Rossum2001-07-051-1/+1