summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Added test to ensure __format__ methods return unicode objects.Eric Smith2007-08-271-4/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-271-7/+5
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-20/+8
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+56
* Before calling _PyType_Lookup() the type needs to be initialized.Guido van Rossum2007-08-241-0/+10
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-50/+38
* Implement the round functionality for PEP 3141, and add tests for it.Alex Martelli2007-08-221-2/+26
* Implement the trunc builtin for PEP 3141Alex Martelli2007-08-221-0/+22
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-0/+1
* Remove RISCOS supportSkip Montanaro2007-08-161-4/+0
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-102/+0
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-161-4/+10
* Make chr() and ord() return/accept surrogate pairs in narrow builds.Guido van Rossum2007-07-151-2/+23
* 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