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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merged revisions 56020-56124 via svnmerge from
Guido van Rossum
2007-06-30
20
-253/+286
*
Don't retest failing tests -- it takes too long.
Guido van Rossum
2007-06-30
1
-2/+2
*
Change float.__getformat__() to return a unicode string.
Walter Dörwald
2007-06-22
1
-3/+3
*
Make array.typecode a unicode string.
Walter Dörwald
2007-06-22
1
-2/+2
*
Change readbuffer_encode() and charbuffer_encode() to
Walter Dörwald
2007-06-22
2
-13/+9
*
Silence GCC warning about uninitialzed variable.
Walter Dörwald
2007-06-20
1
-12/+5
*
Make "thread.local" key a unicode object.
Walter Dörwald
2007-06-20
1
-1/+1
*
Open files in binary mode.
Walter Dörwald
2007-06-20
1
-2/+2
*
Make pickle errror message unicode objects.
Walter Dörwald
2007-06-20
1
-2/+2
*
Change %c format specifier for PyArg_ParseTuple() so that it accepts
Walter Dörwald
2007-06-20
4
-8/+21
*
Patch by Ron Adam: Don't use u prefix in unicode error messages
Walter Dörwald
2007-06-20
3
-19/+19
*
"Fix" the array module test -- by ripping out the 'c' typecode.
Guido van Rossum
2007-06-18
2
-67/+6
*
Fix a buch of shallow test failures.
Guido van Rossum
2007-06-18
4
-36/+43
*
Merged revisions 55962-56019 via svnmerge from
Guido van Rossum
2007-06-18
18
-201/+198
*
Make sys.path and sys.argv into lists of strings.
Guido van Rossum
2007-06-15
2
-7/+7
*
Fix some problems introduced by the str8 repr change.
Guido van Rossum
2007-06-15
3
-2/+9
*
Fix a typo in the name of an output file.
Guido van Rossum
2007-06-15
1
-1/+1
*
Patch by Ron Adam to make repr(str8(...)) return something looking like
Guido van Rossum
2007-06-15
1
-2/+2
*
Modernize the super() call in ABCMeta.__new__() -- I had messed with
Guido van Rossum
2007-06-14
1
-1/+1
*
Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE.
Guido van Rossum
2007-06-14
1
-2/+2
*
Fix another issue likely introduced by the merge.
Guido van Rossum
2007-06-14
1
-1/+1
*
Looks like an oopsie -- I ignored a warning at my peril.
Guido van Rossum
2007-06-14
1
-1/+2
*
Fix some tests by deleting stuff.
Guido van Rossum
2007-06-14
4
-56/+1
*
Somehow this needed adding.
Guido van Rossum
2007-06-14
1
-0/+179
*
Reduce redundant calls to str() in _Environ class.
Guido van Rossum
2007-06-13
1
-3/+4
*
Following an idea by Ron Adam, make sure keys and values in the
Guido van Rossum
2007-06-13
2
-7/+14
*
Merged revisions 55817-55961 via svnmerge from
Guido van Rossum
2007-06-13
195
-1507/+3400
*
Shut up compiler warnings.
Guido van Rossum
2007-06-13
2
-2/+4
*
Discard unused function.
Guido van Rossum
2007-06-13
1
-34/+0
*
Make test_tmpfile() pass. (And hence test_os.py as a whole passes.)
Guido van Rossum
2007-06-13
1
-2/+2
*
Fix bz2_test.py by removing the tests for universal newline mode.
Guido van Rossum
2007-06-13
2
-37/+2
*
Make it compile with GCC 2.96.
Guido van Rossum
2007-06-13
1
-3/+5
*
Checkpoint: half-fixed the bz2 module. 'U' is no longer supported.
Guido van Rossum
2007-06-13
1
-211/+42
*
Rip out the file object's implementation.
Guido van Rossum
2007-06-12
14
-2536/+105
*
unicode is named str now => fix type check.
Walter Dörwald
2007-06-12
1
-1/+1
*
Fix test_shlex: Use io.StringIO.
Walter Dörwald
2007-06-12
1
-7/+2
*
Mention name of left operand, if "foo in unicode_string"
Walter Dörwald
2007-06-12
1
-2/+3
*
Rip out all codecs that can't work in a unicode/bytes world:
Walter Dörwald
2007-06-12
11
-730/+6
*
Make module docstrings unicode objects.
Walter Dörwald
2007-06-12
1
-1/+1
*
Revert 55876. Use PyUnicode_AsEncodedString instead.
Martin v. Löwis
2007-06-12
2
-20/+3
*
Duh. Delete the outdated comment too.
Guido van Rossum
2007-06-12
1
-7/+0
*
Seems this test is just fine. It fails because __phello__.spam
Guido van Rossum
2007-06-12
1
-2/+0
*
Minimal changes to make the "freeze" tool work again.
Guido van Rossum
2007-06-12
8
-29/+31
*
Update the frozen bytecode for __hello__.
Guido van Rossum
2007-06-12
1
-3/+3
*
Some quick fixes of code that was sorting dict.keys() etc.
Guido van Rossum
2007-06-12
1
-6/+3
*
Remove unused code.
Walter Dörwald
2007-06-11
1
-4/+0
*
Simplify various spots where: str() is called on something
Walter Dörwald
2007-06-11
9
-89/+48
*
Add versionadded notes to PyUnicode_FromString(),
Walter Dörwald
2007-06-11
1
-2/+3
*
Document PyUnicode_FromFormat().
Walter Dörwald
2007-06-11
1
-0/+49
*
Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,
Walter Dörwald
2007-06-11
3
-44/+66
[next]