- 19 Haz, 2018 1 kayıt (commit)
-
-
Marco Strigl yazdı
with debuglevel=1 only the header keys got printed. With this change the header values get printed as well and the single header entries get '\n' as a separator.
-
- 18 Haz, 2018 1 kayıt (commit)
-
-
ValeriyaSinevich yazdı
-
- 29 May, 2018 1 kayıt (commit)
-
-
Géry Ogam yazdı
-
- 22 Nis, 2018 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 15 Nis, 2018 1 kayıt (commit)
-
-
Alex Gaynor yazdı
There's no reason a cookie should _ever_ contain pickled data. That's just asking for a critical security vulnerability. Back in Python2 there were helpers for doing that, but they're no more in Python3. Now coded_value is used when the value needs to be encoded for any reason.
-
- 07 Nis, 2018 1 kayıt (commit)
-
-
Alex Gaynor yazdı
* bpo-29613: Added support for SameSite cookies Implemented as per draft https://tools.ietf.org/html/draft-west-first-party-cookies-07 * Documented SameSite And suggestions by members. * Missing space :( * Updated News and contributors * Added version changed details. * Fix in documentation * fix in documentation * Clubbed test cases for same attribute into single. * Updates * Style nits + expand tests * review feedback
-
- 23 Mar, 2018 1 kayıt (commit)
-
-
Julien Palard yazdı
-
- 27 Ock, 2018 1 kayıt (commit)
-
-
Christian Heimes yazdı
bpo-31399: Let OpenSSL verify hostname and IP The ssl module now uses OpenSSL's X509_VERIFY_PARAM_set1_host() and X509_VERIFY_PARAM_set1_ip() API to verify hostname and IP addresses. * Remove match_hostname calls * Check for libssl with set1_host, libssl must provide X509_VERIFY_PARAM_set1_host() * Add documentation for OpenSSL 1.0.2 requirement * Don't support OpenSSL special mode with a leading dot, e.g. ".example.org" matches "www.example.org". It's not standard conform. * Add hostname_checks_common_name Signed-off-by:
Christian Heimes <christian@python.org>
-
- 14 Ara, 2017 1 kayıt (commit)
-
-
Mike yazdı
* Fix multiple typos in code comments * Add spacing in comments (test_logging.py, test_math.py) * Fix spaces at the beginning of comments in test_logging.py
-
- 06 Kas, 2017 1 kayıt (commit)
-
-
Nir Soffer yazdı
blocksize was hardcoded to 8192, preventing efficient upload when using file-like body. Add blocksize argument to __init__, so users can configure the blocksize to fit their needs. I tested this uploading data from /dev/zero to a web server dropping the received data, to test the overhead of the HTTPConnection.send() with a file-like object. Here is an example 10g upload with the default buffer size (8192): $ time ~/src/cpython/release/python upload-httplib.py 10 https://localhost:8000/ Uploaded 10.00g in 17.53 seconds (584.00m/s) real 0m17.574s user 0m8.887s sys 0m5.971s Same with 512k blocksize: $ time ~/src/cpython/release/python upload-httplib.py 10 https://localhost:8000/ Uploaded 10.00g in 6.60 seconds (1551.15m/s) real 0m6.641s user 0m3.426s sys 0m2.162s In real world usage the difference will be smaller, depending on the local and remote storage and the network. See https://github.com/nirs/http-bench for more info.
-
- 26 Eki, 2017 1 kayıt (commit)
-
-
Vitor Pereira yazdı
-
- 14 Eyl, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 07 Eyl, 2017 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
* Remove Setup.config * Always define WITH_THREAD for compatibility.
-
- 24 May, 2017 1 kayıt (commit)
-
-
Stéphane Wirtel yazdı
bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module (#1776) * bpo-28707: call the constructor of SimpleHTTPRequestHandler in the test with a mock object * bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module
-
- 19 May, 2017 1 kayıt (commit)
-
-
remitamine yazdı
-
- 04 May, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 24 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 02 Nis, 2017 1 kayıt (commit)
-
-
Pierre Quentel yazdı
Return 304 response if file was not modified.
-
- 13 Ock, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 16 Ara, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 19 Kas, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 21 Eki, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 11 Eyl, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
regular expression. Deprecation warning is emitted if uses them in the middle of the regular expression.
-
- 10 Eyl, 2016 2 kayıt (commit)
-
-
Christian Heimes yazdı
The deprecation include manual creation of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib. ssl.wrap_socket() is not marked as deprecated yet.
-
Eric V. Smith yazdı
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
-
- 08 Eyl, 2016 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 08 Eyl, 2016 1 kayıt (commit)
-
-
R David Murray yazdı
And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
-
- 03 Eyl, 2016 1 kayıt (commit)
-
-
Eric V. Smith yazdı
-
- 30 Agu, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 27 Agu, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
The previous attempt to determine the file’s Content-Length gave a false positive for pipes on Windows. Also, drop the special case for sending zero-length iterable bodies.
-
- 26 Agu, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 24 Agu, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
When the body object is a file, its size is no longer determined with fstat(), since that can report the wrong result (e.g. reading from a pipe). Instead, determine the size using seek(), or fall back to chunked encoding for unseekable files. Also, change the logic for detecting text files to check for TextIOBase inheritance, rather than inspecting the “mode” attribute, which may not exist (e.g. BytesIO and StringIO). The Content-Length for text files is no longer determined ahead of time, because the original logic could have been wrong depending on the codec and newline translation settings. Patch by Demian Brecht and Rolf Krahl, with a few tweaks by me.
-
- 10 Tem, 2016 2 kayıt (commit)
-
-
R David Murray yazdı
This backports the fix from #16611, per discussion with the release manager.
-
Senthil Kumaran yazdı
confirming the netscape cookie format.
-
- 08 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Patch by Susumu Koshiba.
-
- 26 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 08 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 29 Nis, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Initial patch by Felix Kaiser.
-
- 18 Nis, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Philipp Hagemeister. This fixes a regression caused by revision f4377699fd47.
-