index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
bltinmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to...
Christian Heimes
2007-12-11
1
-50/+50
*
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis
2007-12-04
1
-13/+22
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-15/+15
*
#1535: rename __builtin__ module to builtins.
Georg Brandl
2007-12-02
1
-2/+2
*
Partial fix for bug #1306
Christian Heimes
2007-11-30
1
-0/+3
*
Fixed bug in input() which broke pdb
Christian Heimes
2007-11-25
1
-1/+1
*
Rename buffer -> bytearray.
Guido van Rossum
2007-11-21
1
-1/+1
*
Added some additional checks for sys.std?? is None, see #1440
Christian Heimes
2007-11-15
1
-3/+3
*
Another #1415 fix for Windows GUI apps
Christian Heimes
2007-11-13
1
-2/+6
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-2/+2
*
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum
2007-11-01
1
-0/+78
*
Patch# 1258 by Christian Heimes: kill basestring.
Guido van Rossum
2007-10-16
1
-2/+8
*
Patch #1272, by Christian Heimes and Alexandre Vassalotti.
Guido van Rossum
2007-10-15
1
-0/+3
*
Breaking ground for PEP 3137 implementation:
Guido van Rossum
2007-10-08
1
-2/+1
*
Decode input() with stdin.encoding. Fixes #1097.
Martin v. Löwis
2007-09-04
1
-2/+17
*
Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...
Eric Smith
2007-09-01
1
-1/+1
*
Remove chr8, we're not likely to need it at this point
Neal Norwitz
2007-08-31
1
-26/+1
*
Added test cases for string.Formatter subclassing.
Eric Smith
2007-08-31
1
-12/+23
*
Added test to ensure __format__ methods return unicode objects.
Eric Smith
2007-08-27
1
-4/+1
*
Some changes in preparation of stricter rules about mixing str and bytes.
Guido van Rossum
2007-08-27
1
-7/+5
*
Use unicode and remove support for some uses of str8.
Neal Norwitz
2007-08-26
1
-20/+8
*
Implementation of PEP 3101, Advanced String Formatting.
Eric Smith
2007-08-25
1
-0/+56
*
Before calling _PyType_Lookup() the type needs to be initialized.
Guido van Rossum
2007-08-24
1
-0/+10
*
Finish the work on __round__ and __trunc__.
Guido van Rossum
2007-08-23
1
-50/+38
*
Implement the round functionality for PEP 3141, and add tests for it.
Alex Martelli
2007-08-22
1
-2/+26
*
Implement the trunc builtin for PEP 3141
Alex Martelli
2007-08-22
1
-0/+22
*
Merged in py3k-buffer branch to main line. All objects now use the buffer pr...
Travis E. Oliphant
2007-08-18
1
-0/+1
*
Remove RISCOS support
Skip Montanaro
2007-08-16
1
-4/+0
*
Kill execfile(), use exec() instead
Neal Norwitz
2007-08-12
1
-102/+0
*
Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.
Guido van Rossum
2007-07-16
1
-4/+10
*
Make chr() and ord() return/accept surrogate pairs in narrow builds.
Guido van Rossum
2007-07-15
1
-2/+23
*
Merged revisions 56125-56153 via svnmerge from
Guido van Rossum
2007-07-03
1
-547/+57
*
Merged revisions 55817-55961 via svnmerge from
Guido van Rossum
2007-06-13
1
-43/+26
*
Rip out the file object's implementation.
Guido van Rossum
2007-06-12
1
-14/+1
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-13/+11
*
Merged revisions 55631-55794 via svnmerge from
Guido van Rossum
2007-06-06
1
-12/+0
*
Make the name of the C variables match the Python names
Walter Dörwald
2007-06-05
1
-7/+7
*
Make input9) behave properly with the new I/O library.
Guido van Rossum
2007-05-27
1
-14/+66
*
Enable new I/O. Disable creation of old files.
Guido van Rossum
2007-05-24
1
-14/+1
*
Merged revisions 55407-55513 via svnmerge from
Guido van Rossum
2007-05-22
1
-14/+0
*
Oops. unicode() builtin was still around.
Guido van Rossum
2007-05-22
1
-1/+0
*
It's ok for __hex__ or __oct__ to return unicode.
Guido van Rossum
2007-05-15
1
-2/+2
*
Given that ord() of a bytes object of length 1 is defined, it should
Guido van Rossum
2007-05-08
1
-1/+1
*
Get rid of 'file' built-in. Get rid of types.StringType and friends.
Guido van Rossum
2007-05-08
1
-1/+0
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-298/+1
*
Add 8-bit chr() back as chr8().
Guido van Rossum
2007-05-04
1
-0/+24
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-51/+43
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-22/+0
*
Kill unichr() itself.
Guido van Rossum
2007-05-03
1
-3/+0
*
Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.
Guido van Rossum
2007-05-03
1
-24/+3
[next]