summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-15/+15
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Partial fix for bug #1306Christian Heimes2007-11-301-0/+3
* Fixed bug in input() which broke pdbChristian Heimes2007-11-251-1/+1
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-3/+3
* Another #1415 fix for Windows GUI appsChristian Heimes2007-11-131-2/+6
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+2
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-0/+78
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+8
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-0/+3
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-2/+1
* Decode input() with stdin.encoding. Fixes #1097.Martin v. Löwis2007-09-041-2/+17
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-1/+1
* Remove chr8, we're not likely to need it at this pointNeal Norwitz2007-08-311-26/+1
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-311-12/+23
* 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