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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch from Georg Brandl and me for #1493
Christian Heimes
2007-11-25
1
-2/+4
*
Remove unused variable.
Georg Brandl
2007-11-25
1
-1/+0
*
Use proper API for iter.__next__().
Georg Brandl
2007-11-24
1
-8/+3
*
Cleanup
Christian Heimes
2007-11-23
1
-1/+0
*
Just inline a function, and discover that it can only raise an exception.
Amaury Forgeot d'Arc
2007-11-22
1
-14/+7
*
Removed blocks from several functions in unicodeobject and stringobject where...
Christian Heimes
2007-11-22
2
-93/+12
*
Typo in bytes.replace(): the buffer interface was always used.
Amaury Forgeot d'Arc
2007-11-22
1
-1/+1
*
PyString_AsString is permissive and accepts unicode strings.
Amaury Forgeot d'Arc
2007-11-22
2
-3/+3
*
Rename buffer -> bytearray.
Guido van Rossum
2007-11-21
3
-40/+40
*
Merged revisions 59056-59076 via svnmerge from
Christian Heimes
2007-11-20
1
-2/+19
*
Merged revisions 59005-59040 via svnmerge from
Christian Heimes
2007-11-18
3
-34/+79
*
Fixed some build issues and updated docs.
Christian Heimes
2007-11-17
2
-3/+3
*
Found another memory leak in longrangeiter. And redo the previous correction
Amaury Forgeot d'Arc
2007-11-15
2
-4/+2
*
Replace PyObject_Unicode with PyObject_Str everywhere, and remove the
Thomas Heller
2007-11-15
5
-12/+12
*
Correct a memory leak: the range() object was not properly freed.
Amaury Forgeot d'Arc
2007-11-15
2
-0/+4
*
Fix for #1415 pythonw.exe fails because std streams a missing
Christian Heimes
2007-11-13
1
-1/+1
*
Let's do as Guido says and return None instead of -1
Christian Heimes
2007-11-12
1
-3/+2
*
Stop Python code from instantiating a new stdprinter with sys.stderr.__class__()
Christian Heimes
2007-11-12
1
-11/+90
*
Merged revisions 58930-58938 via svnmerge from
Christian Heimes
2007-11-12
1
-4/+14
*
Merged revisions 58886-58929 via svnmerge from
Guido van Rossum
2007-11-10
4
-10/+160
*
Bug #1415
Christian Heimes
2007-11-10
1
-2/+2
*
Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug...
Christian Heimes
2007-11-08
1
-3/+8
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
12
-1805/+862
*
Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.
Christian Heimes
2007-11-04
1
-4/+8
*
Patch 1171 by mfenniak -- allow subclassing of bytes.
Guido van Rossum
2007-11-03
1
-4/+11
*
Fixes for issue 1752184, ensuring type objects are always created
Guido van Rossum
2007-11-02
1
-3/+12
*
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum
2007-11-01
7
-124/+189
*
Minor correction to the stdprinter object.
Guido van Rossum
2007-10-30
1
-2/+4
*
Patch 1352 (continued in issue 1329) by Christian Heimes.
Guido van Rossum
2007-10-30
2
-0/+121
*
Patch 1329 (partial) by Christian Heimes.
Guido van Rossum
2007-10-30
1
-3/+3
*
Get rid of more uses of string and use unicode
Neal Norwitz
2007-10-27
2
-2/+2
*
Sort the method lists for str8 and bytes so differences are more apparent.
Guido van Rossum
2007-10-26
2
-145/+177
*
Patch 1335 by Christian Heimes.
Guido van Rossum
2007-10-26
1
-1/+121
*
Fix some Py_ssize_t warnings on Win64 that were probably bugs
Neal Norwitz
2007-10-26
2
-4/+4
*
Patch # 1302 by Christian Heimes (with some love from me :-).
Guido van Rossum
2007-10-25
1
-12/+39
*
Fix a refleak for `filename', introduced in rev. 58466.
Georg Brandl
2007-10-24
1
-4/+0
*
Fix a broken format in a PyErr_Format() call: %lx is not supported.
Guido van Rossum
2007-10-24
1
-1/+1
*
Patch #1303: Adapt str8 constructor to bytes (now buffer) one.
Georg Brandl
2007-10-24
1
-5/+140
*
#1316: remove redundant PyLong_Check calls when PyInt_Check was already called.
Georg Brandl
2007-10-23
1
-2/+2
*
Remove redundant PyInt/PyLong checks.
Georg Brandl
2007-10-23
1
-9/+2
*
Patch #1071: Improve unicode.translate() so that you can pass unicode
Georg Brandl
2007-10-23
1
-4/+48
*
Make str/str8 comparisons return True/False for !=/==.
Brett Cannon
2007-10-22
1
-10/+0
*
Issue 1267, continued.
Guido van Rossum
2007-10-22
2
-14/+6
*
Patch 1267 by Christian Heimes.
Guido van Rossum
2007-10-19
1
-9/+19
*
Patch 1280, by Alexandre Vassalotti.
Guido van Rossum
2007-10-19
1
-26/+9
*
Patch# 1258 by Christian Heimes: kill basestring.
Guido van Rossum
2007-10-16
2
-58/+4
*
For PEP3137: Adds missing methods to the mutable PyBytes object (soon
Gregory P. Smith
2007-10-16
8
-1069/+1254
*
Fix a small typo in the comment of unicode_default_encoding[].
Alexandre Vassalotti
2007-10-16
1
-1/+1
*
Patch #1272, by Christian Heimes and Alexandre Vassalotti.
Guido van Rossum
2007-10-15
3
-14/+44
*
Remove the buffer API from PyUnicode as specified by PEP 3137. Also,
Alexandre Vassalotti
2007-10-14
1
-15/+1
[next]