Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v2.7.2
/
Misc
9843ba5
bump to 2.7.2 final
by Benjamin Peterson
· 14 years ago
43ee1a5
fix regression in netrc comment handling (closes #12009)
by Benjamin Peterson
· 14 years ago
ef1122c
another benefit of this change
by Benjamin Peterson
· 14 years ago
4ba009d
simply use the Python version for pyexpat.__version__ #12221
by Benjamin Peterson
· 14 years ago
f14e420
add 2.7.2 header
by Benjamin Peterson
· 14 years ago
cd20705
bump to 2.7.2rc1
by Benjamin Peterson
· 14 years ago
v2.7.2rc1
c4f97f4
Issue #12205: Fix test_subprocess failure due to uninstalled test data.
by Ned Deily
· 14 years ago
22f63b5
Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,
by Ned Deily
· 14 years ago
482f908
Issue #9670: Increase the default stack size for secondary threads on
by Ned Deily
· 14 years ago
4fa68ab
raise an ValueError in getvalue() on closed StringIO (closes #12161)
by Benjamin Peterson
· 14 years ago
dbfba16
Close #12182: Fix pydoc.HTMLDoc.multicolumn() if Python uses the new (true)
by Victor Stinner
· 14 years ago
daf17e9
Issue #12175: RawIOBase.readall() now returns None if read() returns None.
by Victor Stinner
· 14 years ago
5100a40
Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if
by Victor Stinner
· 14 years ago
b94e0cd
Issue #1441530: In imaplib, use makefile() to wrap the SSL socket to avoid
by Charles-François Natali
· 14 years ago
40b41e1
Issue #12100: Don't reset incremental encoders of CJK codecs at each call to
by Victor Stinner
· 14 years ago
8de87a6
correctly lookup __dir__
by Benjamin Peterson
· 14 years ago
f58f1c3
Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore
by Victor Stinner
· 14 years ago
d021f72
merge heads
by Benjamin Peterson
· 14 years ago
6116d4a
stop using the old brain-dead interface for providing attributes/methods
by Benjamin Peterson
· 14 years ago
b13cacf
(backport) Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5
by Ronald Oussoren
· 14 years ago
372954e
(backport)Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instead of "UTF8"
by Ronald Oussoren
· 14 years ago
53b6a5f
NEWS entry for fix of issue #9516
by Ronald Oussoren
· 14 years ago
0cc4fd9
Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail
by Nadeem Vawda
· 14 years ago
e3992eb
#5723: Improve json tests to be executed with and without accelerations.
by Ezio Melotti
· 14 years ago
ee46a7b
Issue #12062: In the `io` module, fix a flushing bug when doing a certain
by Antoine Pitrou
· 14 years ago
c1ec7b5
#12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations.
by Ezio Melotti
· 14 years ago
47d1d0d
Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in
by Antoine Pitrou
· 14 years ago
b1241f9
(Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional
by Victor Stinner
· 14 years ago
2c585f6
(Merge 3.1) Issue #1195: Fix input() if it is interrupted by CTRL+d and then
by Victor Stinner
· 14 years ago
591c2df
Issue 11164: Remove obsolete allnodes test from minidom test.
by Martin v. Löwis
· 14 years ago
5c5d7e2
#11910: Fix test_heapq to skip the C tests when _heapq is missing.
by Ezio Melotti
· 14 years ago
21ce8f0
Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath.
by Antoine Pitrou
· 14 years ago
0639be6
#10169: Fix argument parsing in socket.sendto() to avoid error masking.
by Ezio Melotti
· 14 years ago
cec4649
#12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations.
by Ezio Melotti
· 14 years ago
8b26c4b
#11999: sync based on comparing mtimes, not mtime to system clock
by R David Murray
· 14 years ago
58d6b1b
Backport fix for issue #10684 from 3.x
by Ronald Oussoren
· 14 years ago
df8a8f7
#11982: fix json.loads('""') to return u'' rather than ''.
by Ezio Melotti
· 14 years ago
0a92d18
Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
by Victor Stinner
· 14 years ago
645b9f6
Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not
by Victor Stinner
· 14 years ago
112d48a
(Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X
by Victor Stinner
· 14 years ago
97cf585
(Merge 3.1) Issue #9756: credit the author, Andreas Stührk (Trundle)
by Victor Stinner
· 14 years ago
e363ec1
(Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper
by Victor Stinner
· 14 years ago
f9860c8
#11971: fix man page; it's -OO not -O0
by R David Murray
· 14 years ago
011525e
Fix closes issue10761: tarfile.extractall failure when symlinked files are present.
by Senthil Kumaran
· 14 years ago
1f9eb15
Move NEWS entry to the right section.
by Antoine Pitrou
· 14 years ago
4394e0d
Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*
by Antoine Pitrou
· 14 years ago
34b32d6
#11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long.
by Ezio Melotti
· 14 years ago
5dc6868
Update NEWS for Issue11236.
by Senthil Kumaran
· 14 years ago
e3685f6
#6780: fix starts/endswith error message to mention that tuples are accepted too.
by Ezio Melotti
· 14 years ago
a0895db
#11901: add description of how bitfields are laid out to hexversion docs
by R David Murray
· 14 years ago
f93bb26
pybench prep_times calculation error (closes #11895)
by Jesus Cea
· 14 years ago
44e8168
startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)
by Jesus Cea
· 14 years ago
e0156c4
Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object.
by Raymond Hettinger
· 14 years ago
bafc6a9
Fix sporadic failure in test_startfile.
by Nadeem Vawda
· 14 years ago
33feeab
(Merge 3.1) Issue #11768: The signal handler of the signal module only calls
by Victor Stinner
· 14 years ago
c116da0
merge 11442 NEWS
by Martin v. Löwis
· 14 years ago
31e1b1f
merge 11442 NEWS
by Martin v. Löwis
· 14 years ago
2d253dd
Issue 11442: Add NEWS entry for e9724d7abbc2
by Martin v. Löwis
· 14 years ago
37c0fe5
Fix minor subclassing issue with collections.Counter
by Raymond Hettinger
· 14 years ago
c283a85
Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. u"\U00012345"[0]).
by Ezio Melotti
· 14 years ago
ddaea1c
Issue #11467: Fix urlparse behavior when handling urls which contains scheme
by Senthil Kumaran
· 14 years ago
a99b761
Fix Issue11474 - url2pathname() handling of '/C|/' on Windows
by Senthil Kumaran
· 14 years ago
2b96f09
#9233: Fix json.loads({}) to return a dict (instead of a list), when _json is not available.
by Ezio Melotti
· 14 years ago
179816d
Issue 11718: Teach IDLE's open module dialog to find packages.
by Raymond Hettinger
· 14 years ago
0531d6f
update news in 2.7 for Issue #11703
by Senthil Kumaran
· 14 years ago
ea8b6ef
#10019: Fix regression relative to 2.6: add newlines if indent=0
by R David Murray
· 14 years ago
e4579c3
Issue #11830: Remove unnecessary introspection code in the decimal module.
by Raymond Hettinger
· 14 years ago
16f98b7
Add NEWS item for #5162.
by brian.curtin
· 14 years ago
8b4367e
#4877: Fix a segfault in xml.parsers.expat while attempting to parse a closed file.
by Ezio Melotti
· 14 years ago
7dfc874
Issue #8428: Fix a race condition in multiprocessing.Pool when terminating
by Antoine Pitrou
· 14 years ago
04cb72f
Issue9670: Back out changeset b0d2b696da19; test fails on other platforms
by Ned Deily
· 14 years ago
e427f0f
Issue #9670: Increase the default stack size for secondary threads on
by Ned Deily
· 14 years ago
fe2f1ad
Issue #11719: Fix message about unexpected test_msilib skip.
by Ross Lagerwall
· 14 years ago
5de51ac
(Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was
by Victor Stinner
· 14 years ago
5f51182
Issue #7108: Fix test_commands to not fail when special attributes ('@'
by Ned Deily
· 14 years ago
9f1ffb2
#7311: fix HTMLParser to accept non-ASCII attribute values.
by Ezio Melotti
· 14 years ago
104c3f1
Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.
by Ross Lagerwall
· 14 years ago
e3c11b4
Issue #9347: Fix formatting for tuples in argparse type= error messages.
by Steven Bethard
· 14 years ago
b885a5b
Merge cleanup.
by Guido van Rossum
· 14 years ago
07ef62c
Merge issue 11662 from 2.6.
by Guido van Rossum
· 14 years ago
079381d
Merge issue 11662 from 2.5.
by Guido van Rossum
· 14 years ago
b7ef35b
Merge urllib/urllib2 security fix from 2.6 branch.
by guido@google.com
· 14 years ago
9a9fdfa
Merge urllib/urllib2 security fix from 2.5 branch.
by guido@google.com
· 14 years ago
77d4660
Correct handling of functions with only kwarg args in getcallargs (closes #11256)
by Benjamin Peterson
· 14 years ago
db3080e
Add CVE number to urllib/urllib2 news item.
by guido@google.com
· 14 years ago
03f7e23
Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon.
by Martin v. Löwis
· 14 years ago
d687be0
Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer.
by Mark Dickinson
· 14 years ago
1829e8f
Move Misc/NEWS entry to correct section.
by Mark Dickinson
· 14 years ago
bc3b104
Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from 3.2.)
by Steven Bethard
· 14 years ago
49b0ce0
Fix short file name generation in bdist_msi.
by Martin v. Löwis
· 14 years ago
f21ad92
check possible recursive _as_parameter_ to prevent segfault (closes #1838)
by Benjamin Peterson
· 14 years ago
5e0062d
Issue #9343: Document that argparse parent parsers must be configured before their children. (Merge from 3.2.)
by Steven Bethard
· 14 years ago
3f69a05
Issue #8982: Improve the documentation for the argparse Namespace object. (Merge from 3.2.)
by Steven Bethard
· 14 years ago
5395862
Issue #9348: Raise an early error if argparse nargs and metavar don't match. (Merge from 3.2.)
by Steven Bethard
· 14 years ago
874d59e
Issue #11144: Fix corner cases where float-to-int conversion unnecessarily returned a long.
by Mark Dickinson
· 14 years ago
d3cb2f6
Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.
by Mark Dickinson
· 14 years ago
9aa5a34
Issue #11666: Teach pydoc to display full help for named tuples
by Raymond Hettinger
· 14 years ago
f9e9a6f
Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of type long. Thanks Robert Kern.
by Mark Dickinson
· 14 years ago
2bc23b8
Add FTP to the allowed url schemes. Add Misc/NEWS.
by guido@google.com
· 14 years ago
86f9074
Fix some issue references in NEWS
by Éric Araujo
· 14 years ago
Next »