summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-271-1/+1
* Cosmetic changes to MvL's change to unichr():Guido van Rossum2001-06-261-4/+6
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-0/+4
* more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd"Fredrik Lundh2001-06-261-6/+17
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-1/+1
* Cruft cleanup: Removed the unused last_is_sticky argument from the internalTim Peters2001-05-281-1/+1
* SF bug #425836: Reference leak in filter().Tim Peters2001-05-211-0/+1
* Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a file...Mark Hammond2001-05-141-1/+8
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-131-2/+6
* Generalize zip() to work with iterators.Tim Peters2001-05-061-18/+44
* Make PyIter_Next() a little smarter (wrt its knowledge of iteratorTim Peters2001-05-051-47/+14
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-12/+19
* Generalize map() to work with iterators.Tim Peters2001-05-031-66/+68
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-031-15/+24
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-021-40/+54
* Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up.Tim Peters2001-04-281-9/+19
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+27
* SF patch #413552 - Premature decref on objectTim Peters2001-04-071-3/+7
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-221-2/+14
* Move the code implementing isinstance() and issubclass() to new CGuido van Rossum2001-03-211-96/+6
* Backed out the unistr() builtin.Marc-André Lemburg2001-01-191-18/+0
* clearer error messages for apply() and "no locals"Jeremy Hylton2001-01-191-4/+6
* Fix for the bug in complex() just reported by Ping.Guido van Rossum2001-01-191-1/+7
* This patch adds a new builtin unistr() which behaves like str()Marc-André Lemburg2001-01-171-0/+18
* Use rich comparisons in min and max.Guido van Rossum2001-01-171-9/+9
* Update the docstring for apply() so that "args" is marked as optionalFred Drake2001-01-121-1/+1
* (Modified) patch by Ping - SF Patch #102681.Guido van Rossum2001-01-121-27/+33
* Add NotImplemented to the builtin module.Neil Schemenauer2001-01-041-0/+3
* CHange error messages for ord(), using "string" instead of "string or Unicode"Andrew M. Kuchling2000-12-231-2/+3
* Whoops! Two stray characters crept in to my last check-inAndrew M. Kuchling2000-12-201-1/+1
* Patch #102955, fixing one of the warnings in bug #121479:Andrew M. Kuchling2000-12-201-5/+7
* Make isinstance() more permissive in what types of arguments itNeil Schemenauer2000-12-041-17/+9
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-26/+26
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* 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