Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
21d73f49fc2358ba988ceaeb516c37f4f7518227
/
Lib
/
httplib.py
95ba469
#1929: fix httplib _read_chunked (str/bytes confusion).
by Georg Brandl
· 17 years ago
895627f
Merged revisions 59407-59422 via svnmerge from
by Christian Heimes
· 17 years ago
98297ee
Merging the py3k-pep3137 branch back into the py3k branch.
by Guido van Rossum
· 17 years ago
8ce8a78
Merged revisions 58221-58741 via svnmerge from
by Guido van Rossum
· 17 years ago
1b7f891
Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from
by Thomas Wouters
· 17 years ago
a00f123
Fix for bug 1148: str/bytes issue in httplib's _safe_read().
by Guido van Rossum
· 17 years ago
89d996e
Merged revisions 57778-58052 via svnmerge from
by Thomas Wouters
· 17 years ago
47b49bf
Merged revisions 57620-57771 via svnmerge from
by Thomas Wouters
· 17 years ago
70d0dda
Make test_urllib be strict about str/bytes.
by Guido van Rossum
· 17 years ago
3a38c91
Remove Python 1.5 compatibility layer from httplib.
by Jeremy Hylton
· 17 years ago
4b878bd
Style
by Jeremy Hylton
· 17 years ago
df5f6b5
Fix several failing tests in test_urllib2net.
by Jeremy Hylton
· 17 years ago
806c246
Merged revisions 56753-56781 via svnmerge from
by Guido van Rossum
· 17 years ago
39b198d
Change urllib to use HTTPConnection rather than old HTTP class.
by Jeremy Hylton
· 17 years ago
04319c7
Make sure LineAndFileWrapper gets bytes() as its first argument.
by Jeremy Hylton
· 17 years ago
4e7855d
Use BytesIO instead of StringIO.
by Jeremy Hylton
· 17 years ago
0ee5eeb
Fix several more paths from the SSL code.
by Jeremy Hylton
· 17 years ago
97043c3
HTTPResponse should not inherit from io.IOBase.
by Jeremy Hylton
· 17 years ago
fb35f65
A few local changes for consistency of string literals.
by Jeremy Hylton
· 17 years ago
e5d0e84
Make consistent use of "" for string literals in new classes.
by Jeremy Hylton
· 17 years ago
811fc14
Fix status line parsing for http response.
by Jeremy Hylton
· 17 years ago
dd5a860
Fix test_httplib.
by Martin v. Löwis
· 17 years ago
d59da4b
Merged revisions 55407-55513 via svnmerge from
by Guido van Rossum
· 17 years ago
68937b4
Change some uses of cStringIO.StringIO to io.StringIO.
by Guido van Rossum
· 17 years ago
d8faa36
Merged revisions 53952-54987 via svnmerge from
by Guido van Rossum
· 18 years ago
a18af4e
PEP 3114: rename .next() to .__next__() and add next() builtin.
by Georg Brandl
· 18 years ago
89df245
Make test_socket_ssl.py pass by fixing some code that was
by Guido van Rossum
· 18 years ago
6f8fe15
Fix httplib for removal of slicing from exceptions.
by Brett Cannon
· 18 years ago
cc2b016
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
by Guido van Rossum
· 18 years ago
be19ed7
Fix most trivially-findable print statements.
by Guido van Rossum
· 18 years ago
9fe394c
Merged revisions 53538-53622 via svnmerge from
by Thomas Wouters
· 18 years ago
b940e11
SF patch 1631942 by Collin Winter:
by Guido van Rossum
· 18 years ago
89f507f
Four months of trunk changes (including a few releases...)
by Thomas Wouters
· 18 years ago
0e3f591
Merged revisions 46753-51188 via svnmerge from
by Thomas Wouters
· 18 years ago
477c8d5
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
by Thomas Wouters
· 18 years ago
6aab16e
Move "httpresponses" dict from urllib2 to httplib where it belongs.
by Georg Brandl
· 19 years ago
80ba8e8
bug [ 1296004 ] MemoryError in httplib
by Georg Brandl
· 19 years ago
0aade9a
bug [ 1155638 ] self.length shield exception in httplib
by Georg Brandl
· 19 years ago
def9d2a
Fix for SF bug 988120 via patch 1061941.
by Jeremy Hylton
· 20 years ago
4d03791
SF bug #1046855: httplib index out of range
by Raymond Hettinger
· 20 years ago
39a3178
Patch #1025790: Add status code constants to httplib.
by Martin v. Löwis
· 20 years ago
0a1af4a
Remove tabs.
by Brett Cannon
· 20 years ago
74a249e
Strip square brackets from IPv6 address.
by Martin v. Löwis
· 20 years ago
cae14d2
missed the obvious test case and corresponding fix
by Skip Montanaro
· 20 years ago
10e6e0e
Search from the end of the host/port combination to find the colon which
by Skip Montanaro
· 20 years ago
deacce2
Patch #800236: add HTTPResponse.getheaders().
by Martin v. Löwis
· 20 years ago
2c17825
SF bug 874842 and patch 997626: httplib bugs
by Jeremy Hylton
· 20 years ago
39aef79
Fix a bug that robotparser starves memory when the server responses
by Hye-Shik Chang
· 20 years ago
bac788a
Replace str.find()!=1 with the more readable "in" operator.
by Raymond Hettinger
· 21 years ago
58eb11c
Whitespace normalization.
by Tim Peters
· 21 years ago
af7dc8d
Patch #831747: Add skip_accept_encoding parameter to putrequest.
by Martin v. Löwis
· 21 years ago
0c5b4ad
fixed obvious bug in _send_header as per SF bug #831271
by Alex Martelli
· 21 years ago
11892ec
Patch #817854: Add missing operations for SSLFile. Fixes #792101.
by Martin v. Löwis
· 21 years ago
b676952
Fix sf bug 666219: assertion error in httplib.
by Jeremy Hylton
· 21 years ago
616a58d
Deal with a couple XXX comments which asked questions.
by Greg Stein
· 21 years ago
1867f24
Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447.
by Martin v. Löwis
· 21 years ago
c2659cf
Whitespace normalization.
by Tim Peters
· 21 years ago
c1b2cb9
SF bug 622042: Don't expect response body from HEAD request.
by Jeremy Hylton
· 22 years ago
2548c73
Implement IDNA (Internationalized Domain Names in Applications).
by Martin v. Löwis
· 22 years ago
4922768
Reverted the previous change to read() and readline().
by Raymond Hettinger
· 22 years ago
b2e0b92
Module review:
by Raymond Hettinger
· 22 years ago
74b9a7a
typo
by Skip Montanaro
· 22 years ago
77c06fb
Whitespace normalization.
by Tim Peters
· 22 years ago
7762865
Remove some test code.
by Jeremy Hylton
· 22 years ago
22b3a49
Fix SF bug #637789: Handle Proxy-Connection header.
by Jeremy Hylton
· 22 years ago
230a60c
Whitespace normalization.
by Tim Peters
· 22 years ago
d4c472c
Move code for reading chunked responses in helper function,
by Jeremy Hylton
· 22 years ago
d229b3a
SF bug [ 600488 ] Robustness tweak to httplib.py
by Jeremy Hylton
· 22 years ago
469cdad
Whitespace normalization.
by Tim Peters
· 22 years ago
186bec2
typo
by Skip Montanaro
· 22 years ago
e3252ec
Fix typos and such caught by the pycheckerbot.
by Jeremy Hylton
· 22 years ago
c411dba
Whitespace normalization.
by Tim Peters
· 22 years ago
8531b1b
Send HTTP requests with a single send() call instead of many.
by Jeremy Hylton
· 22 years ago
39c0380
Change _begin() back to begin().
by Jeremy Hylton
· 22 years ago
29d27ac
Fix for SF bug 579107.
by Jeremy Hylton
· 22 years ago
6d0a4c7
Fix for SF bug #432621: httplib: multiple Set-Cookie headers
by Jeremy Hylton
· 22 years ago
12f4f35
Fix SF bug #575360
by Jeremy Hylton
· 22 years ago
d46aa37
Handle HTTP/0.9 responses.
by Jeremy Hylton
· 22 years ago
fbd7994
Convert raise to call exception class. Add whitespace.
by Jeremy Hylton
· 22 years ago
7c75c99
Simplify HTTPSConnection constructor.
by Jeremy Hylton
· 22 years ago
be4fcf1
Fixes for two separate HTTP/1.1 bugs: 100 responses and HTTPS connections.
by Jeremy Hylton
· 22 years ago
54f0222
SF 563203. Replaced 'has_key()' with 'in'.
by Raymond Hettinger
· 22 years ago
6af3e2d
Forward port of patch # 500311: Work around for buggy https servers.
by Martin v. Löwis
· 23 years ago
f3f87f7
oops - export InvalidURL in __all__
by Skip Montanaro
· 23 years ago
9d38997
add InvalidURL exception - raised if port is given but empty or non-numeric
by Skip Montanaro
· 23 years ago
a3c0b93
[Bug #531616] Make HTTPS work again by adding a sendall method to the
by Andrew M. Kuchling
· 23 years ago
3921ff6
Fix SF bug 525520.
by Jeremy Hylton
· 23 years ago
8acf1e0
SF bug report #405939: wrong Host header with proxy
by Jeremy Hylton
· 23 years ago
e12454f
The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.
by Martin v. Löwis
· 23 years ago
22c5d77
SF #515011, cleanup: remove "or 0" condition
by Neal Norwitz
· 23 years ago
f3623f3
Somebody checked in a version of httplib that doesn't even compile --
by Tim Peters
· 23 years ago
6459c8d
Fix for SF buf #458835
by Jeremy Hylton
· 23 years ago
322c0d1
Only close sockets if they have been created. Reported by Blake Winton.
by Martin v. Löwis
· 23 years ago
81937a4
Resolve patch #449367.
by Greg Stein
· 23 years ago
2ad2569
Initialize msg to avoid unbound locals.
by Martin v. Löwis
· 23 years ago
4eb5940
Untabify IPv6 changes.
by Martin v. Löwis
· 23 years ago
a43c2f8
Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients.
by Martin v. Löwis
· 23 years ago
951a884
more public symbols for __all__
by Skip Montanaro
· 23 years ago
23d4047
SF patch #405845 by Martin von Löwis
by Jeremy Hylton
· 24 years ago
42dd01a
An ssl-wrapped socket now returns '' on EOF, just like a regular
by Jeremy Hylton
· 24 years ago
Next »