index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Misc
/
NEWS
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove two unneeded imports in 'io'.
Brett Cannon
2008-08-18
1
-0/+2
*
Remove imports of 'warnings' that are no longer needed in dummy_thread,
Brett Cannon
2008-08-17
1
-0/+2
*
Backport r65661, r65760: Issue #3575: Incremental decoder's decode
Hirokazu Yamamoto
2008-08-17
1
-0/+3
*
I forgot to update NEWS.
Hirokazu Yamamoto
2008-08-17
1
-0/+3
*
Update distutils so that it triggers no warnings when run under -3.
Brett Cannon
2008-08-17
1
-5/+5
*
Issue 2464. Supports a malformation in the URL received
Facundo Batista
2008-08-17
1
-0/+3
*
Silence DeprecationWarning raised by mimetools and rfc822 in cgi.
Brett Cannon
2008-08-16
1
-1/+1
*
Silence the DeprecationWarning raised in httplib when mimetools is imported.
Brett Cannon
2008-08-16
1
-1/+1
*
Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer.
Brett Cannon
2008-08-16
1
-0/+3
*
Issue #2776: fixed small issue when handling an URL with double slash
Facundo Batista
2008-08-16
1
-0/+3
*
#2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pa...
Antoine Pitrou
2008-08-15
1
-0/+4
*
Issue #3476: make BufferedReader and BufferedWriter thread-safe
Antoine Pitrou
2008-08-14
1
-0/+3
*
issue #3554: ctypes.string_at and ctypes.wstring_at must use the
Thomas Heller
2008-08-14
1
-0/+4
*
Silence the DeprecationWarning of rfc822 triggered by its importation in
Brett Cannon
2008-08-14
1
-0/+4
*
Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,
Martin v. Löwis
2008-08-12
1
-0/+4
*
#3134: shutil referenced undefined WindowsError symbol
Antoine Pitrou
2008-08-11
1
-0/+2
*
- Issue #3537: Fix an assertion failure when an empty but presized dict
Georg Brandl
2008-08-11
1
-0/+3
*
Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
Robert Schuppenies
2008-08-10
1
-0/+3
*
Silence warnings in csv about using reduce() when run under -3 by using
Brett Cannon
2008-08-09
1
-4/+4
*
Use functools.reduce() in difflib instead of __builtin__.reduce() to silence
Brett Cannon
2008-08-09
1
-5/+5
*
Copy reduce() to _functools so to have functools.reduce() not raise a warning
Brett Cannon
2008-08-09
1
-0/+3
*
Suppress the warning in asynchat from using buffer() when running udner -3.
Brett Cannon
2008-08-09
1
-1/+1
*
move NEWS entry to the appropriate section (oops!)
Antoine Pitrou
2008-08-09
1
-3/+3
*
#3205: bz2 iterator fails silently on MemoryError
Antoine Pitrou
2008-08-09
1
-0/+3
*
Add news item about _sre.compile() re-bytecode validator.
Guido van Rossum
2008-08-09
1
-0/+4
*
Fix slightly misleading statement in the NEWS file.
Antoine Pitrou
2008-08-09
1
-1/+2
*
accept issue 3436
Skip Montanaro
2008-08-08
1
-0/+4
*
Remove buffer() usage in the socket module by just slicing directly on the
Brett Cannon
2008-08-08
1
-1/+1
*
Remove warnings generated for the suprocess module when run under -3. Required
Brett Cannon
2008-08-08
1
-2/+3
*
Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in
Brett Cannon
2008-08-06
1
-0/+3
*
Add a note about all the modules/packages changed to silence -3 warnings. More
Brett Cannon
2008-08-04
1
-0/+7
*
Issue #1481296: (again!) Make conversion of a float NaN to an int or
Mark Dickinson
2008-08-04
1
-0/+3
*
Add missing NEWS entry for r65487
Nick Coghlan
2008-08-04
1
-0/+8
*
- Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword
Gregory P. Smith
2008-08-04
1
-0/+4
*
Issue #3039: Fix TarFileCompat.writestr() which always raised an
Lars Gustäbel
2008-08-02
1
-0/+3
*
Issue #799428: Fix Tkinter.Misc._nametowidget to unwrap
Martin v. Löwis
2008-08-02
1
-0/+2
*
Generate the PatternGrammar pickle during "make install".
Martin v. Löwis
2008-08-01
1
-0/+5
*
#3479: unichr(2**32) used to return u'\x00'.
Amaury Forgeot d'Arc
2008-07-31
1
-0/+4
*
Security patches from Apple: prevent int overflow when allocating memory
Neal Norwitz
2008-07-31
1
-0/+2
*
#2542: now that issubclass() may call arbitrary code,
Amaury Forgeot d'Arc
2008-07-31
1
-0/+3
*
backport r65264
Benjamin Peterson
2008-07-28
1
-0/+3
*
Issue #3449: Update decimal module to use most recent specification
Mark Dickinson
2008-07-27
1
-0/+3
*
note robotparser bug fix.
Skip Montanaro
2008-07-27
1
-0/+2
*
add a NEWS entry
Antoine Pitrou
2008-07-25
1
-0/+3
*
#3394: zipfile.writestr doesn't set external attributes, so files are extract...
Antoine Pitrou
2008-07-25
1
-0/+4
*
Issue 1592: Better error reporting for operations on closed shelves.
Raymond Hettinger
2008-07-25
1
-0/+3
*
3k-warn about parser's "ast" aliases.
Georg Brandl
2008-07-23
1
-0/+2
*
Issue #2620: Overflow checking when allocating or reallocating memory
Gregory P. Smith
2008-07-22
1
-0/+7
*
Issue2378: pdb would delete free variables when stepping into a class statement.
Amaury Forgeot d'Arc
2008-07-21
1
-0/+4
*
Increment version number in NEWS file, and move items that were added after 2...
Amaury Forgeot d'Arc
2008-07-21
1
-13/+27
[next]