summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-547/+57
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-43/+26
* Rip out the file object's implementation.Guido van Rossum2007-06-121-14/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-13/+11
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-12/+0
* Make the name of the C variables match the Python namesWalter Dörwald2007-06-051-7/+7
* Make input9) behave properly with the new I/O library.Guido van Rossum2007-05-271-14/+66
* Enable new I/O. Disable creation of old files.Guido van Rossum2007-05-241-14/+1
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-14/+0
* Oops. unicode() builtin was still around.Guido van Rossum2007-05-221-1/+0
* It's ok for __hex__ or __oct__ to return unicode.Guido van Rossum2007-05-151-2/+2
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-081-1/+1
* Get rid of 'file' built-in. Get rid of types.StringType and friends.Guido van Rossum2007-05-081-1/+0
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-298/+1
* Add 8-bit chr() back as chr8().Guido van Rossum2007-05-041-0/+24
* More coding by random modification.Guido van Rossum2007-05-041-51/+43
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-22/+0
* Kill unichr() itself.Guido van Rossum2007-05-031-3/+0
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-031-24/+3
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-2/+2
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-5/+8
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-0/+41
* Support marshal.dump(x, f) where f is not a real file.Guido van Rossum2007-04-131-2/+12
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-0/+109
* Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.Georg Brandl2007-03-101-9/+10
* Add raw_input() back, named input(). Revive the old unittests too.Guido van Rossum2007-02-261-0/+78
* Fix leak in the print function.Georg Brandl2007-02-261-3/+5
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-1/+1
* Essential changes for print function changes.Guido van Rossum2007-02-091-2/+2
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+0
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-1/+1
* Patch #1601678: move intern() to sys.intern().Georg Brandl2006-12-191-26/+0
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+4
* Check "sep" and "end" for stringness in Print().Georg Brandl2006-11-301-1/+14
* Add built-in Print() function. This is PEP 3105 except for the name;Guido van Rossum2006-11-301-0/+55
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+110
* SF patch 1546297 (with some tweaks):Guido van Rossum2006-08-251-15/+3
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-241-102/+18
* Make it compile with C89.Guido van Rossum2006-08-241-1/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-12/+16
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-75/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-2/+2
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-25/+0
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-4/+14
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-19/+26
* Remove apply()Neal Norwitz2006-03-171-45/+0
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-171-86/+0
* raw_input() -> input(). old input behavior is history (and test_builtin pass...Neal Norwitz2006-03-171-110/+72
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-1/+1