Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
ead70565fcb59b920992021a2cd43f4687e207cb
/
Lib
ead7056
Retouch my last change after a comment on style from Guido.
by Lars Gustäbel
· 18 years ago
0f98d8f
Allow str8 in .write().
by Martin v. Löwis
· 18 years ago
98ff898
Expect that source strings are Unicode.
by Martin v. Löwis
· 18 years ago
e83395e
Make assertion error be more verbose.
by Martin v. Löwis
· 18 years ago
163b717
Fix typo.
by Martin v. Löwis
· 18 years ago
72937f3
Compare what's read from files against proper byte literals. Neither of these
by Barry Warsaw
· 18 years ago
646049e
Don't try to convert str to Unicode anymore.
by Martin v. Löwis
· 18 years ago
9b2a269
Get pystone working with lazy map.
by Neal Norwitz
· 18 years ago
cbbe98f
1. Catch TypeError exception when writing to OutputWindow
by Kurt B. Kaiser
· 18 years ago
801c89b
Add -s/--start option that makes it easier to run the tests in batches
by Neal Norwitz
· 18 years ago
0168802
Kill execfile(), use exec() instead
by Neal Norwitz
· 18 years ago
bb217d9
Make sure to flush output when writing dots during -R runs
by Neal Norwitz
· 18 years ago
f7f28fc
Fix problem when exec'ing a string with a coding
by Neal Norwitz
· 18 years ago
03fc779
Remove unnecessary import
by Neal Norwitz
· 18 years ago
1e50a9f
Fix test_wsgiref that used StringIO and a BufferedReader rather than
by Neal Norwitz
· 18 years ago
9264ecd
Quick fix for a new problem here -- using string.lowercase somehow caused
by Guido van Rossum
· 18 years ago
d78d3b4
Fall back to ascii if the locale module cannot be loaded.
by Martin v. Löwis
· 18 years ago
d1cd4d4
Set sys.stdout.encoding properly.
by Martin v. Löwis
· 18 years ago
79c3208
Change shelve to require a bytes-oriented dict as
by Martin v. Löwis
· 18 years ago
8dfc4a9
Remove support for __members__ and __methods__. There still might be
by Neal Norwitz
· 18 years ago
32ca442
Fix test_bsddb3.
by Martin v. Löwis
· 18 years ago
7378df7
Fix what appears to be a very old bug. Tkinter in struni is more intolerant
by Kurt B. Kaiser
· 18 years ago
efdca3e
Use an event variable to wait for the server to be ready, rather than sleep(0.1).
by Guido van Rossum
· 18 years ago
6ae6ba0
Remove the None tag from tagdefs dict for now, appears inoperative and
by Kurt B. Kaiser
· 18 years ago
e6b59c5
Make sure the mock object passed to finish_request() is buffered.
by Jeremy Hylton
· 18 years ago
7ffe299
Allow rfc822 to process headers from an incoming HTTP request.
by Jeremy Hylton
· 18 years ago
4b878bd
Style
by Jeremy Hylton
· 18 years ago
6d21456
Make the sqlite tests pass.
by Gerhard Häring
· 18 years ago
bd4a63e
A small tweak to avoid calling traceback.format_exception_only() with
by Guido van Rossum
· 18 years ago
5590d8c
RFC 1952 requires the FNAME field to be Latin-1. Do not include
by Lars Gustäbel
· 18 years ago
cccc58d
Fix dbshelve and much of dbtables.
by Martin v. Löwis
· 18 years ago
9b01862
Wrap set_location.
by Martin v. Löwis
· 18 years ago
e1b4a16
Fix circular import issue
by Kurt B. Kaiser
· 18 years ago
f2335a9
Fix filter() issues
by Kurt B. Kaiser
· 18 years ago
283f3ff
Remove spurious (and unneeded) import of StringIO.
by Guido van Rossum
· 18 years ago
f39317a
Hack to avoid a nasty recursion issue when Python is invoked
by Guido van Rossum
· 18 years ago
66aaf74
Fix remaining map() issues.
by Kurt B. Kaiser
· 18 years ago
60455b2
Use relative imports
by Kurt B. Kaiser
· 18 years ago
c76a250
Merged revisions 56782-56847 via svnmerge from
by Guido van Rossum
· 18 years ago
34d1928
SF patch# 1770008 by Christian Heimes (plus some extras).
by Guido van Rossum
· 18 years ago
918f49e
Fix most of the bsddb3 tests.
by Martin v. Löwis
· 18 years ago
eb29e9a
Fix core dump in an endcase of b.strip() that I missed.
by Guido van Rossum
· 18 years ago
2fb5ac7
Fix the ctypes tests. Patch from Victor Stinner. He writes:
by Thomas Heller
· 18 years ago
df5f6b5
Fix several failing tests in test_urllib2net.
by Jeremy Hylton
· 18 years ago
6a10e02
Switch wsgiref to io.{StringIO,BytesIO}. This shuts up the test failures.
by Guido van Rossum
· 18 years ago
ec8e716
Convert some usages of types.StringType to just str (since types.StringType has gone away).
by Collin Winter
· 18 years ago
75c26bc
BZ2File.read(0) should return b"" rather than raising ValueError.
by Guido van Rossum
· 18 years ago
a055770
Remove the coding line, and convert umlauted characters to \x escapes.
by Guido van Rossum
· 18 years ago
55b15c9
Fix the test_minidom failure.
by Guido van Rossum
· 18 years ago
bdba5cf
Change the repr() of frozenset instances (and set subclasses)
by Guido van Rossum
· 18 years ago
b506dc3
Completed str/unicode unification.
by Lars Gustäbel
· 18 years ago
cd869d8
SF patch# 1769016 by James Brotchie.
by Guido van Rossum
· 18 years ago
ca8dd91
Fix test case by converting dbm keys to bytes.
by Martin v. Löwis
· 18 years ago
f9b95d4
Patch #1768976, Fix for failing test_scriptpackages (untested but looks good)
by Neal Norwitz
· 18 years ago
e656869
Change dumbdbm to use bytes keys.
by Martin v. Löwis
· 18 years ago
806c246
Merged revisions 56753-56781 via svnmerge from
by Guido van Rossum
· 18 years ago
4626458
SF patch# 1767398 by Adam Hupp.
by Guido van Rossum
· 18 years ago
dd766d5
Move tempfile over to the io module. Makes test_threaded_import pass.
by Brett Cannon
· 18 years ago
64ce505
Make bsddb use bytes as keys and values. Add StringKeys
by Martin v. Löwis
· 18 years ago
33d2689
Merged revisions 56492-56752 via svnmerge from
by Guido van Rossum
· 18 years ago
77553ab
Fix test for new version of urllib that uses HTTPConnection directly.
by Jeremy Hylton
· 18 years ago
39b198d
Change urllib to use HTTPConnection rather than old HTTP class.
by Jeremy Hylton
· 18 years ago
f066c1b
Make test_tokenize really pass -- don't add extra output.
by Guido van Rossum
· 18 years ago
cfbbf48
Make test_tokenize pass again:
by Guido van Rossum
· 18 years ago
3e18615
Fix test: readline() now returns bytes
by Jeremy Hylton
· 18 years ago
66dc8c5
Fix tests that tried to sneak strings through httplib.
by Jeremy Hylton
· 18 years ago
04319c7
Make sure LineAndFileWrapper gets bytes() as its first argument.
by Jeremy Hylton
· 18 years ago
4e7855d
Use BytesIO instead of StringIO.
by Jeremy Hylton
· 18 years ago
0ee5eeb
Fix several more paths from the SSL code.
by Jeremy Hylton
· 18 years ago
97043c3
HTTPResponse should not inherit from io.IOBase.
by Jeremy Hylton
· 18 years ago
4a7fd90
Fix failure do to outlawing complex floordiv/mod.
by Guido van Rossum
· 18 years ago
ec0c508
Fix an absurdly invasive test.
by Jeremy Hylton
· 18 years ago
8fff792
Fix tests to use bytes() where the actual sockets return bytes().
by Jeremy Hylton
· 18 years ago
9648d62
Make test_complex pass again now that floordiv and mod are illegal.
by Guido van Rossum
· 18 years ago
5accbdb
Make sure socket.close() doesn't interfere with socket.makefile().
by Jeremy Hylton
· 18 years ago
d2ef864
Treat HTTP status line as ISO-8859-1 as in httplib module.
by Jeremy Hylton
· 18 years ago
cf2f419
Hack: Fix some test_urllib2.net tests by getting them access to the
by Jeremy Hylton
· 18 years ago
fb35f65
A few local changes for consistency of string literals.
by Jeremy Hylton
· 18 years ago
c0f2d2d
SF patch# 1762940 by Joe Gregorio.
by Guido van Rossum
· 18 years ago
15863ea
SF patch# 1764815 by Paul Colomiets.
by Guido van Rossum
· 18 years ago
ad8d300
SF patch# 1766592 by Paul Colomiets. Fix test_zipimport.
by Guido van Rossum
· 18 years ago
e5d0e84
Make consistent use of "" for string literals in new classes.
by Jeremy Hylton
· 18 years ago
811fc14
Fix status line parsing for http response.
by Jeremy Hylton
· 18 years ago
4737482
Add a default __prepare__() method to 'type', so it can be called
by Guido van Rossum
· 18 years ago
a6bcefc
When testing all stdlib modules, ignore test_pep263.py which is encoded
by Guido van Rossum
· 18 years ago
70d2b89
Tests for @abstractproperty by Jeffrey Yasskin.
by Guido van Rossum
· 18 years ago
b31339f
Add @abstractproperty.
by Guido van Rossum
· 18 years ago
e78178e
Bytes (which are the input for decoding) are mutable now. If a decoding
by Walter Dörwald
· 18 years ago
2dbde5e
In cases where dealing with base64, do the conversion but then get the ASCII
by Brett Cannon
· 18 years ago
96d7e83
Don't try to use a bytes sequence for file paths. Also force equivalency tests
by Brett Cannon
· 18 years ago
447d33e
Implement PEP 3120.
by Martin v. Löwis
· 18 years ago
5de17db
Testing against a different default encoding is meaningless as the default
by Brett Cannon
· 18 years ago
d38d078
Expat parser no longer has a returns_unicode attribute since everything is
by Brett Cannon
· 18 years ago
48f4cf9
Use BytesIO instead of cStringIO.StringIO.
by Martin v. Löwis
· 18 years ago
c582bfc
Fix quopri to operate consistently on bytes.
by Martin v. Löwis
· 18 years ago
f30bb0e
Patch #1762412: Fix test case for struni branch.
by Martin v. Löwis
· 18 years ago
3e1f85e
Fix the minidom test.
by Guido van Rossum
· 18 years ago
3992db8
SF patch# 1759922 by Alexandre Vassalotti.
by Guido van Rossum
· 18 years ago
624ab7c
Make test_sgmllib pass on OSX. Hopefully it still passes everywhere else too.
by Guido van Rossum
· 18 years ago
ea83447
SF patch# 1757839 by Alexandre Vassalotti (part 2).
by Guido van Rossum
· 18 years ago
Next »