summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* This patch adds a new Python C API called PyString_AsStringAndSize()Marc-André Lemburg2000-09-191-6/+3
* Deferred the attribute name object type checking to the underlyingMarc-André Lemburg2000-09-181-4/+4
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-4/+1
* comples_from_string(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* Clean up a couple of warnings on Win64. The downcast of the strlen size_tTrent Mick2000-08-121-1/+1
* Both PEP 201 Lockstep Iteration and SF patch #101030 have beenBarry Warsaw2000-08-031-0/+56
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-2/+0
* Another missed ansification.Thomas Wouters2000-07-231-4/+1
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-179/+60
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-1/+1
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-4/+4
* Get rid of unused vars in builtin_unicode (they were causingTim Peters2000-07-091-2/+0
* Fixed unicode() to use the new API PyUnicode_FromEncodedObject().Marc-André Lemburg2000-07-071-14/+1
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick:Guido van Rossum2000-06-281-3/+10
* Christopher Fandrich <cfandrich@8cs.com>:Fred Drake2000-06-201-3/+6
* All the exception building related stuff has been moved out of thisBarry Warsaw2000-05-251-190/+1
* bltin_exc: Removed the leaf_exc flag in the structure, which was onlyBarry Warsaw2000-05-251-35/+29
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-2/+2
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* A bit of cleanup:Guido van Rossum2000-05-031-34/+5
* _PyBuiltin_Init_2(): Remove the misleading comment.Barry Warsaw2000-05-021-1/+0
* initerrors(): Remove this function. String-based standard exceptionsBarry Warsaw2000-05-021-96/+4
* When refering to Unicode characters in exception messages andFred Drake2000-04-131-5/+5
* ord: provide better error messagesJeremy Hylton2000-04-121-8/+19
* Marc-Andre Lemburg:Guido van Rossum2000-04-111-4/+17
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-8/+45
* Marc-Andre Lemburg: added new builtin functions unicode() andGuido van Rossum2000-03-101-5/+78
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-5/+5
* Changes by Mark Hammond related to the new WindowsError exception.Guido van Rossum2000-02-171-0/+6
* Adjusted apply() docstring based on comments from Gerrit HollFred Drake1999-12-231-3/+4
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-42/+67
* Fixed order of parameters in slice() docstring. The Library ReferenceFred Drake1999-07-191-1/+1
* Patch by Tim Peters:Guido van Rossum1999-06-221-0/+15
* # Darn! Local variable l declared but not used in abstract_issubclass().Guido van Rossum1999-06-171-1/+1
* Patch by Jim Fulton (code style tweaked a bit) to supportGuido van Rossum1999-06-161-17/+94
* Remove unused variable from complex_from_string() code.Guido van Rossum1999-04-071-1/+1
* Patch by Nick and Stephanie Lockwood to implement complex() with a stringGuido van Rossum1999-03-251-4/+133
* New builtin buffer() creates a derived read-only buffer from anyGuido van Rossum1999-03-191-0/+24
* (initerrors): Make sure that the exception tuples ("base-classes" whenBarry Warsaw1999-02-241-8/+18
* Patch by Tim Peters to improve the range checks for range() andGuido van Rossum1999-02-231-30/+48
* bltin_exc[]: EnvironmentError is not a "leaf exception", so set it'sBarry Warsaw1999-01-291-1/+1
* builtin_map(): A better fix for the previous leak plug (rememberBarry Warsaw1999-01-281-3/+6
* builtin_map(): Nailed memory leak. PyList_Append() borrows aBarry Warsaw1999-01-281-0/+1
* builtin_complex(): Nailed memory leak. This one's in the instanceBarry Warsaw1999-01-271-0/+1
* Avoid overflow if possible in calculations for range(); reportGuido van Rossum1999-01-121-7/+28
* Added new builtin standard exception: NotImplementedError (its CBarry Warsaw1998-12-011-0/+2