summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-0/+45
* Remove the PendingDeprecationWarning from apply(). apply() willFred Drake2003-12-051-4/+0
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+2
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+1
* regressing the performance bugfix -- Guido wants the performance bug leftAlex Martelli2003-10-251-1/+1
* Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixesAlex Martelli2003-10-251-1/+1
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2003-10-251-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-4/+4
* Correct check of PyUnicode_Resize() return value.Jeremy Hylton2003-09-161-1/+2
* Reflow long lines and reformat.Jeremy Hylton2003-09-161-13/+13
* Fix a crash: when sq_item failed the code continued blindly and used theWalter Dörwald2003-08-181-3/+10
* Make filter(bool, ...) as fast as filter(None, ...).Neil Schemenauer2003-08-141-1/+1
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-5/+3
* some more error-message enhancementsAlex Martelli2003-04-231-10/+10
* complete and clarify some error messages for range()Alex Martelli2003-04-231-5/+5
* fixed a potential refcount bug (thanks Raymond!).Alex Martelli2003-04-221-1/+1
* Adding new built-in function sum, with docs and tests.Alex Martelli2003-04-221-0/+61
* Some errors from range() should be TypeError, not ValueError.Guido van Rossum2003-04-151-3/+3
* Prompted by Tim's comment, when handle_range_longs() sees anGuido van Rossum2003-04-141-9/+9
* handle_range_longs(): refcount handling is very delicate here, andTim Peters2003-04-131-31/+50
* Patch by Chad Netzer (with significant change):Guido van Rossum2003-04-111-5/+190
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-1/+4
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-231-2/+16
* Fix SF bug #690435, apply fails to check if warning raises exceptionNeal Norwitz2003-02-231-3/+4
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-1/+3
* Change filtertuple() to use tp_as_sequence->sq_itemWalter Dörwald2003-02-101-1/+6
* Squashed compiler wng about signed/unsigned clash in comparison.Tim Peters2003-02-101-1/+1
* Change filterstring() and filterunicode(): If theWalter Dörwald2003-02-101-43/+48
* My previous checkin caused compile() to no longer accept buffers, as notedJust van Rossum2003-02-101-5/+7
* patch #683515: "Add unicode support to compile(), eval() and exec"Just van Rossum2003-02-101-6/+40
* Make sure filter() never returns tuple, str or unicodeWalter Dörwald2003-02-041-5/+22
* PyUnicode_Resize() doesn't free its argument in case of a failure,Walter Dörwald2003-02-041-1/+1
* filterstring() and filterunicode() in Python/bltinmodule.cWalter Dörwald2003-02-041-8/+70
* SF #661437, apply() should get PendingDeprecationNeal Norwitz2003-02-031-0/+3
* Patch #636005: Filter unicode into unicode.Martin v. Löwis2003-01-251-0/+62
* SF bug #655271: Slightly modify locals() docRaymond Hettinger2003-01-041-1/+1
* Make error message more specific for min() and max().Raymond Hettinger2002-12-291-1/+1
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-18/+18
* Enhance issubclass() and PyObject_IsSubclass() so that a tuple isWalter Dörwald2002-12-121-1/+3
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-261-3/+5
* execfile should call PyErr_SetFromErrnoWithFilename instead ofPeter Schneider-Kamp2002-08-271-1/+1
* 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