Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
63236cf386574484d9f594af4b464c44c579cf25
63236cf
Minimal fixes to save the bootstrap on OSX.
by Guido van Rossum
· 17 years ago
adee45e
Merged revisions 55545-55587 via svnmerge from
by Guido van Rossum
· 17 years ago
573c08c
Change PyErr_Format() to generate a unicode string (by using
by Walter Dörwald
· 17 years ago
e65c86c
Document the existence of PyUnicode_InternInPlace() and
by Walter Dörwald
· 17 years ago
1680713
Add interning of unicode strings by copying the functionality from
by Walter Dörwald
· 17 years ago
34a042d
This is the last time I fix binhex. If it breaks again it goes in the dustbin.
by Guido van Rossum
· 17 years ago
5c2fab6
Simplify %U handling by using Py_UNICODE_COPY.
by Walter Dörwald
· 17 years ago
1d0476b
Fix typo.
by Walter Dörwald
· 17 years ago
2c94aa5
Fixed array.fromfile(); removed references to PyFileObject in array.tofile().
by Guido van Rossum
· 17 years ago
6c037ba
Don't specify an encoding, let open figure out an appropriate one.
by Walter Dörwald
· 17 years ago
292aa0d
Fix test_set.
by Guido van Rossum
· 17 years ago
fc3436b
Add an encoding property to TextIOBase instances.
by Guido van Rossum
· 17 years ago
75d6f1a
Fix tset_bytes.py.
by Guido van Rossum
· 17 years ago
eceb0fb
Fix test_exceptions.py: There were still str8 objects
by Walter Dörwald
· 17 years ago
78c1c4d
Link _fileio statically -- it is needed during initialization.
by Guido van Rossum
· 17 years ago
9e4dc91
Fix list_test.py::test_print(): Read and write the
by Walter Dörwald
· 17 years ago
2565d90
Fix test_funcattrs.py: __name__ attribute must be str8.
by Walter Dörwald
· 17 years ago
305b924
Fix test_bool and test_bufio.
by Guido van Rossum
· 17 years ago
6f376c4
Enable new I/O. Disable creation of old files.
by Guido van Rossum
· 17 years ago
fa0054a
Make test_subprocess work. Fix universal newlines in io.py.
by Guido van Rossum
· 17 years ago
c126e8a
Merged revisions 55514-55544 via svnmerge from
by Guido van Rossum
· 17 years ago
c2f93dc
Remove native popen() and fdopen(), replacing them with subprocess calls.
by Guido van Rossum
· 17 years ago
d8595fe
Refactor to avoid ultra-deeply-nested code.
by Guido van Rossum
· 17 years ago
e3d1d41
Fix datetime and its test.
by Guido van Rossum
· 17 years ago
1be7e3f
Add a format character %S to PyUnicode_FromFormat() that
by Walter Dörwald
· 17 years ago
6252e10
Make gdbm and dumbdbm use byte strings. Updated their tests.
by Guido van Rossum
· 17 years ago
517bcfe
Simplify append_keyword_tzinfo() by using PyUnicode_FromFormat().
by Walter Dörwald
· 17 years ago
85d8e42
Fix test_unicodedata.py.
by Walter Dörwald
· 17 years ago
eab198d
Fix testcodec.py and test_charmapcodec.py
by Walter Dörwald
· 17 years ago
e53309c
This is how I run the tests.
by Guido van Rossum
· 17 years ago
522a6c6
bz2 uses bytes everywhere (even for the 'newlines' attribute). test_bz2 passes.
by Guido van Rossum
· 17 years ago
776152b
zlib now uses bytes everywhere, and the test passes.
by Guido van Rossum
· 17 years ago
dcee3c0
Make test_binhex pass. (Do we really want to support it still?)
by Guido van Rossum
· 17 years ago
4581ae5
Make test_base64 pass.
by Guido van Rossum
· 17 years ago
0e225aa
Make binascii use byte strings everywhere (in and out).
by Guido van Rossum
· 17 years ago
6dd15d3
obcheckin.
by Guido van Rossum
· 17 years ago
d59da4b
Merged revisions 55407-55513 via svnmerge from
by Guido van Rossum
· 17 years ago
dc19f09
There's no need to default file to sys.stdout -- print(file=None) already
by Guido van Rossum
· 17 years ago
c49ebc0
The HTMLCalendar outputs bytes now, so fix the test
by Walter Dörwald
· 17 years ago
1f5947b
Remove have_unicode checks and merge those tests into the
by Walter Dörwald
· 17 years ago
0242705
Remove unused import.
by Walter Dörwald
· 17 years ago
4aeaa96
Remove tests for have_unicode.
by Walter Dörwald
· 17 years ago
e9eaab4
The unicode builtin is gone now. Fix setup.py so that
by Walter Dörwald
· 17 years ago
d6ca546
Make test_zipfile pass.
by Guido van Rossum
· 17 years ago
94ca1c6
linecache.py was still struggling with unicode vs. non-unicode.
by Guido van Rossum
· 17 years ago
390bd7c
Oops. unicode() builtin was still around.
by Guido van Rossum
· 17 years ago
7d0a826
Sockets facelift. APIs that could return binary data (e.g. aton() and
by Guido van Rossum
· 17 years ago
88effc1
Make test_format.py pass again (error messages have changed).
by Walter Dörwald
· 17 years ago
3353a2e
Make test_repr.py pass again after repr(range(1)) changed.
by Guido van Rossum
· 17 years ago
813b0e5
Make test_inspect pass once again.
by Guido van Rossum
· 17 years ago
2a857de
Update name of test.
by Walter Dörwald
· 17 years ago
4ad9421
Rename test_xrange.py to test_range.py and fix the type name in various spots.
by Walter Dörwald
· 17 years ago
03b43d8
repr(range(10)) now returns 'range(0, 10)' for clarity.
by Walter Dörwald
· 17 years ago
c2f6a58
Remove unused variables.
by Walter Dörwald
· 17 years ago
67d9993
Add a few simple repr tests.
by Walter Dörwald
· 17 years ago
850e516
Change range_repr() to use %R for the start/stop/step attributes.
by Walter Dörwald
· 17 years ago
7569dfe
Add a format specifier %R to PyUnicode_FromFormat(), which embeds
by Walter Dörwald
· 17 years ago
94b59bb
Use test_support.unlink() instead of os.unlink().
by Guido van Rossum
· 17 years ago
8d9db04
Fix the cleanup so that we're not left with shelftemp.db.* files.
by Guido van Rossum
· 17 years ago
b5b2270
Make test_socket pass. There was an unchecked error when a Unicode
by Guido van Rossum
· 17 years ago
1ab8330
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
by Walter Dörwald
· 17 years ago
14176a5
Add missing #define.
by Walter Dörwald
· 17 years ago
4e618b7
Fix test: u prefixes are gone now. Test 'a' and b'a' instead.
by Walter Dörwald
· 17 years ago
d203431
Add 'U'/'U#' format characters to Py_BuildValue (and thus
by Walter Dörwald
· 17 years ago
5550731
Revert last checkin: _PyUnicode_New() allocates space
by Walter Dörwald
· 17 years ago
9992835
Allocate one more character, so that the terminating nullbyte can be copied.
by Walter Dörwald
· 17 years ago
68937b4
Change some uses of cStringIO.StringIO to io.StringIO.
by Guido van Rossum
· 17 years ago
7ac9d40
Protect abs__file__() from changes to sys.modules while it's running.
by Guido van Rossum
· 17 years ago
024da5c
Make all the multibyte codec tests pass.
by Guido van Rossum
· 17 years ago
f4cfc8f
Make test_codecs work. The CJK codecs now use bytes instead of str8 for
by Guido van Rossum
· 17 years ago
bbbd4fd
Make test_new pass.
by Guido van Rossum
· 17 years ago
1a1f61b
Make test_locale pass.
by Guido van Rossum
· 17 years ago
f40e576
Make test__locale pass. Stupid bug in the original code: used 'is' for '=='.
by Guido van Rossum
· 17 years ago
af199fa
Allow encoding names to be unicode strings.
by Guido van Rossum
· 17 years ago
583118a
Fix tests for string encodings.
by Walter Dörwald
· 17 years ago
ebe3e16
Merged revisions 55342-55406 via svnmerge from
by Guido van Rossum
· 17 years ago
e35553e
Fix io.StringIO for wide Python builds.
by Walter Dörwald
· 17 years ago
9d2ac22
Fix io.StringIO: String are stored encoded (using "unicode-internal" as the
by Walter Dörwald
· 17 years ago
c9e363c
Make test_subprocess pass. The subprocess module now reads and writes
by Guido van Rossum
· 17 years ago
af2362a
Make test_sys pass.
by Guido van Rossum
· 17 years ago
7f21d30
Make test_strop pass. (But shouldn't we kill strop?)
by Guido van Rossum
· 17 years ago
7ebb970
Make test_re pass.
by Guido van Rossum
· 17 years ago
e108373
It's ok for __hex__ or __oct__ to return unicode.
by Guido van Rossum
· 17 years ago
a45ea58
Make test_fileio.py work.
by Guido van Rossum
· 17 years ago
ea0ebd8
Make test_str.py pass.
by Guido van Rossum
· 17 years ago
2be161d
Make tset_float pass. float(<unicode>) was never very good -- it used
by Guido van Rossum
· 17 years ago
a28c291
Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()
by Guido van Rossum
· 17 years ago
0f0eb0b
Kill two innocuous compiler warnings.
by Guido van Rossum
· 17 years ago
514a0f2
Obsubmit.
by Guido van Rossum
· 17 years ago
c4afa10
Fix the picklevalue test; it broke due to the change in default protocol.
by Guido van Rossum
· 17 years ago
1bc535d
Merged revisions 55328-55341 via svnmerge from
by Guido van Rossum
· 17 years ago
360e4b8
Merged revisions 55325-55327 via svnmerge from
by Guido van Rossum
· 17 years ago
a8add0e
Merged revisions 55270-55324 via svnmerge from
by Guido van Rossum
· 17 years ago
827b055
Change PyUnicode_EncodeCharmap() to return bytes objects
by Walter Dörwald
· 18 years ago
aef90f4
Fix string test (was testing str twice).
by Walter Dörwald
· 18 years ago
711005d
Change PyUnicode_EncodeRawUnicodeEscape() to return bytes
by Walter Dörwald
· 18 years ago
db5d33e
Reuse static global hexdigits array.
by Walter Dörwald
· 18 years ago
79e913e
Change PyUnicode_EncodeUnicodeEscape() to return a bytes object.
by Walter Dörwald
· 18 years ago
1324c6f
There's no longer a u prefix for unicode objects => drop it.
by Walter Dörwald
· 18 years ago
b03ccc0
Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString().
by Walter Dörwald
· 18 years ago
Next »