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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix test: u prefixes are gone now. Test 'a' and b'a' instead.
Walter Dörwald
2007-05-18
1
-2/+1
*
Add 'U'/'U#' format characters to Py_BuildValue (and thus
Walter Dörwald
2007-05-18
1
-39/+39
*
Change some uses of cStringIO.StringIO to io.StringIO.
Guido van Rossum
2007-05-18
19
-89/+26
*
Protect abs__file__() from changes to sys.modules while it's running.
Guido van Rossum
2007-05-18
1
-1/+1
*
Make all the multibyte codec tests pass.
Guido van Rossum
2007-05-17
9
-1221/+1206
*
Make test_codecs work. The CJK codecs now use bytes instead of str8 for
Guido van Rossum
2007-05-17
1
-5/+5
*
Make test_new pass.
Guido van Rossum
2007-05-17
1
-1/+1
*
Make test_locale pass.
Guido van Rossum
2007-05-17
1
-0/+1
*
Make test__locale pass. Stupid bug in the original code: used 'is' for '=='.
Guido van Rossum
2007-05-17
1
-1/+1
*
Fix tests for string encodings.
Walter Dörwald
2007-05-17
1
-2/+2
*
Merged revisions 55342-55406 via svnmerge from
Guido van Rossum
2007-05-17
27
-4666/+71
*
Fix io.StringIO for wide Python builds.
Walter Dörwald
2007-05-16
1
-6/+11
*
Fix io.StringIO: String are stored encoded (using "unicode-internal" as the
Walter Dörwald
2007-05-16
2
-19/+33
*
Make test_subprocess pass. The subprocess module now reads and writes
Guido van Rossum
2007-05-15
2
-27/+16
*
Make test_sys pass.
Guido van Rossum
2007-05-15
2
-6/+5
*
Make test_strop pass. (But shouldn't we kill strop?)
Guido van Rossum
2007-05-15
1
-1/+1
*
Make test_re pass.
Guido van Rossum
2007-05-15
1
-14/+2
*
It's ok for __hex__ or __oct__ to return unicode.
Guido van Rossum
2007-05-15
1
-2/+1
*
Make test_fileio.py work.
Guido van Rossum
2007-05-15
1
-1/+1
*
Make test_str.py pass.
Guido van Rossum
2007-05-15
3
-17/+15
*
Make tset_float pass. float(<unicode>) was never very good -- it used
Guido van Rossum
2007-05-15
1
-9/+9
*
Fix the picklevalue test; it broke due to the change in default protocol.
Guido van Rossum
2007-05-15
1
-9/+15
*
Merged revisions 55328-55341 via svnmerge from
Guido van Rossum
2007-05-15
36
-645/+107
*
Merged revisions 55325-55327 via svnmerge from
Guido van Rossum
2007-05-14
36
-528/+364
*
Merged revisions 55270-55324 via svnmerge from
Guido van Rossum
2007-05-14
37
-7985/+29
*
Fix string test (was testing str twice).
Walter Dörwald
2007-05-12
1
-1/+1
*
There's no longer a u prefix for unicode objects
Walter Dörwald
2007-05-11
1
-6/+6
*
Merged revisions 55225-55227,55229-55269 via svnmerge from
Guido van Rossum
2007-05-11
13
-640/+162
*
Enhance the punycode decoder so that it can decode
Walter Dörwald
2007-05-11
3
-130/+136
*
Fix the array tests. Only a minor change to the C code was required.
Guido van Rossum
2007-05-10
1
-16/+12
*
Use io.BytesIO instead of StringIO.StringIO in all
Walter Dörwald
2007-05-10
1
-16/+16
*
Merged revisions 55184-55224 via svnmerge from
Guido van Rossum
2007-05-10
1
-1/+8
*
Fix punycode codec and tests.
Walter Dörwald
2007-05-10
2
-43/+43
*
Don't insist on cStringIO.
Guido van Rossum
2007-05-09
1
-19/+20
*
Don't insist on cStringIO.
Guido van Rossum
2007-05-09
1
-2/+2
*
Fix code depending on exception unpacking.
Guido van Rossum
2007-05-09
1
-1/+1
*
Don't insist on cStringIO.
Guido van Rossum
2007-05-09
1
-1/+1
*
Add to an XXX comment.
Guido van Rossum
2007-05-09
1
-1/+2
*
Random modifications that slightly improve the chances of this not blowing up.
Guido van Rossum
2007-05-09
1
-11/+10
*
Support PEP-263-style coding declarations.
Guido van Rossum
2007-05-09
1
-0/+11
*
I don't know how come bytes.join() was a class method, but that's clearly
Guido van Rossum
2007-05-09
1
-5/+6
*
Fix trivial bug in idna encoding.
Guido van Rossum
2007-05-09
1
-1/+0
*
test_codeccallbacks.py passes again.
Walter Dörwald
2007-05-09
1
-97/+110
*
Make test_marshal pass. Not my best work. :-(
Guido van Rossum
2007-05-09
1
-5/+5
*
Make the StringIO test pass.
Guido van Rossum
2007-05-08
1
-21/+25
*
Got test_pickletools and test_pickle working.
Guido van Rossum
2007-05-08
4
-145/+165
*
Given that ord() of a bytes object of length 1 is defined, it should
Guido van Rossum
2007-05-08
2
-0/+14
*
Fix a few places where a str instead of a bytes object was used.
Guido van Rossum
2007-05-08
2
-5/+5
*
repr(b"\0") should return b"\x00", not the (unusual) b"\0".
Guido van Rossum
2007-05-08
1
-2/+3
*
Kill u"..." string quotes. Thought I already did that.
Guido van Rossum
2007-05-08
1
-2/+2
[next]