Georg Brandl
edc3cbaaba
Copyright year update, add version to licenses.
12 years ago
Georg Brandl
e800a0e1c2
Bump to 3.2.6rc1
12 years ago
Georg Brandl
4480d30b8b
ref #19855 : skip uuid test_find_mac on non-Posix as in later branches
12 years ago
Georg Brandl
ff3e5e3779
Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX).
12 years ago
Georg Brandl
51c116223e
Issue #19855 : uuid.getnode() on Unix now looks on the PATH for the
executables used to find the mac address, with /sbin and /usr/sbin as
fallbacks.
Issue #11508 : Fixed uuid.getnode() and uuid.uuid1() on environment with
virtual interface. Original patch by Kent Frazier.
Issue #18784 : The uuid module no more attempts to load libc via ctypes.CDLL,
if all necessary functions are already found in libuuid.
Patch by Evgeny Sologubov.
Issue #16102 : Make uuid._netbios_getnode() work again on Python 3.
12 years ago
Georg Brandl
3bc35672a2
Backport b533cc11d114 to fix intermittent test_urllibnet failures.
12 years ago
Georg Brandl
4615076471
Add a dummy "touch" target to the Makefile so that the custom buildbots can test this branch.
12 years ago
Georg Brandl
786c8e7dd5
Fix-up for 0f362676460d: add missing size argument to SSLFakeFile.readline(), as in 2.6 backport 8a6def3add5b
12 years ago
Ned Deily
e558181660
Issue #20939 : Use www.example.com instead of www.python.org to avoid test
failures when ssl is not present.
12 years ago
Georg Brandl
fd9262cf2a
Issue #16039 : CVE-2013-1752: Change use of readline in imaplib module to limit
line length. Patch by Emil Lind.
12 years ago
Georg Brandl
0840b41582
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
12 years ago
Antoine Pitrou
dad182c16e
Lax cookie parsing in http.cookies could be a security issue when combined
with non-standard cookie handling in some Web browsers.
Reported by Sergey Bobrov.
12 years ago
Georg Brandl
860c367c29
Issue #22419 : Limit the length of incoming HTTP request in wsgiref server to
65536 bytes and send a 414 error code for higher lengths. Patch contributed
by Devin Cook.
12 years ago
Georg Brandl
21bf3f942b
Issue #22517 : When a io.BufferedRWPair object is deallocated, clear its
weakrefs.
12 years ago
Georg Brandl
eaca8616ab
Issue #16041 : CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to
prevent readline() calls from consuming too much memory. Patch by Jyrki
Pulliainen.
12 years ago
Georg Brandl
210ee47e33
Issue #16042 : CVE-2013-1752: smtplib: Limit amount of data read by
limiting the call to readline(). Original patch by Christian Heimes.
12 years ago
Christian Heimes
70088f14ad
Issue #18747 : document issue with OpenSSL's CPRNG state and fork
13 years ago
Georg Brandl
c9cb18d3f7
Issue #16038 : CVE-2013-1752: ftplib: Limit amount of data read by
limiting the call to readline(). Original patch by Michał
Jastrzębski and Giampaolo Rodola.
12 years ago
Georg Brandl
f0746ca463
Issue #16037 : HTTPMessage.readheaders() raises an HTTPException when more than
100 headers are read. Adapted from patch by Jyrki Pulliainen.
12 years ago
Georg Brandl
ec3c103520
Issue #18709 : Fix CVE-2013-4238. The SSL module now handles NULL bytes
inside subjectAltName correctly. Formerly the module has used OpenSSL's
GENERAL_NAME_print() function to get the string represention of ASN.1
strings for ``rfc822Name`` (email), ``dNSName`` (DNS) and
``uniformResourceIdentifier`` (URI).
12 years ago
Jason R. Coombs
79690ac1d0
Issue #13540 : Update references to Action class to match syntax used for other classes in this file.
12 years ago
Jason R. Coombs
eb0ef415d5
Issue #13540 : Removed redundant documentation about Action instance attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
12 years ago
Jason R. Coombs
f28cf7abcf
Issue #13540 : Expanded argparse documents to clarify the action API
15 years ago
Ned Deily
915a30fb0d
Issue #21323 : Fix http.server to again handle scripts in CGI subdirectories,
broken by the fix for security issue #19435 . Patch by Zach Byrne.
12 years ago
Benjamin Peterson
314dc126ce
expect the correct platform-dependent linesep
12 years ago
Benjamin Peterson
73b8b1cdb8
url unquote the path before checking if it refers to a CGI script ( closes #21766 )
12 years ago
Benjamin Peterson
49991deb6e
fix poor spelling
12 years ago
Benjamin Peterson
6ef2b36afa
disallow a negative idx parameter
12 years ago
Benjamin Peterson
99b5afab74
in scan_once, prevent the reading of arbitrary memory when passed a negative index
Bug reported by Guido Vranken.
12 years ago
Benjamin Peterson
80e6af1f61
fix versionchanged version
12 years ago
Benjamin Peterson
ee5f1c13d1
remove directory mode check from makedirs ( closes #21082 )
12 years ago
Benjamin Peterson
b4be376d16
use https docs url ( #21115 )
12 years ago
Benjamin Peterson
8aef28a5d0
add Ian Beer
12 years ago
Benjamin Peterson
23cf403ca1
fix expandtabs overflow detection to be consistent and not rely on signed overflow
12 years ago
Benjamin Peterson
cf25c5caae
use ssl.PROTOCOL_SSLv23 for maximum compatibility ( closes #20896 )
12 years ago
Stefan Krah
d9bed99fcb
Issue #20246 : Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.
13 years ago
Benjamin Peterson
1b94030b37
update logo url ( #20695 )
13 years ago
Benjamin Peterson
f6218a2191
open retrieved file in binary mode, since it's now compressed
13 years ago
Benjamin Peterson
fbf648ebba
complain when nbytes > buflen to fix possible buffer overflow ( closes #20246 )
13 years ago
Antoine Pitrou
f60b7df9f8
Issue #12226 : HTTPS is now used by default when connecting to PyPI.
13 years ago
Georg Brandl
ee7f3fc586
Backout 7d399099334d.
13 years ago
Georg Brandl
7b5d6adb28
Backout 265d369ad3b9.
13 years ago
Georg Brandl
7ec3e56bb8
Backout d80207d15294.
13 years ago
Jason R. Coombs
32bf5e1273
Update NEWS for 265d369ad3b9.
13 years ago
Jason R. Coombs
bd26d86d74
Issue #19286 : [distutils] Only match files in build_py.find_data_files.
13 years ago
Jason R. Coombs
93912b9e54
Issue #19286 : Adding test demonstrating the failure when a directory is found in the package_data globs.
13 years ago
Benjamin Peterson
35aca89617
merge 3.1 ( #19435 )
13 years ago
Benjamin Peterson
04e9de40f3
use the collapsed path in the run_cgi method ( closes #19435 )
13 years ago
R David Murray
58bf8d2a68
Merge #14984 : only import pwd on POSIX.
13 years ago
R David Murray
505be2146f
#14984 : only import pwd on POSIX.
13 years ago