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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
remove duplicate close() from ssl.py; expose unwrap and add test for it
Bill Janssen
2008-08-12
2
-6/+25
*
Fix the connection refused error part of issue 3419, use errno module instead...
Jesse Noller
2008-08-11
1
-1/+2
*
#3134: shutil referenced undefined WindowsError symbol
Antoine Pitrou
2008-08-11
1
-4/+10
*
Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...
Nick Coghlan
2008-08-11
17
-18/+130
*
Remove the fqdn call for issue 3270
Jesse Noller
2008-08-11
1
-4/+1
*
- Issue #3537: Fix an assertion failure when an empty but presized dict
Georg Brandl
2008-08-11
1
-0/+11
*
Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
Robert Schuppenies
2008-08-10
1
-0/+10
*
Silence warnings in csv about using reduce() when run under -3 by using
Brett Cannon
2008-08-09
1
-0/+1
*
Use functools.reduce() in difflib instead of __builtin__.reduce() to silence
Brett Cannon
2008-08-09
1
-0/+1
*
Copy reduce() to _functools so to have functools.reduce() not raise a warning
Brett Cannon
2008-08-09
2
-3/+45
*
Suppress the warning in asynchat from using buffer() when running udner -3.
Brett Cannon
2008-08-09
1
-1/+5
*
accept issue 3436
Skip Montanaro
2008-08-08
2
-4/+51
*
Remove buffer() usage in the socket module by just slicing directly on the
Brett Cannon
2008-08-08
1
-6/+6
*
Remove warnings generated for the suprocess module when run under -3. Required
Brett Cannon
2008-08-08
1
-7/+8
*
#1288615: Python code.interact() and non-ASCII input
Antoine Pitrou
2008-08-07
1
-0/+4
*
Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in
Brett Cannon
2008-08-06
1
-0/+19
*
Remove duplicate import
Mark Dickinson
2008-08-06
1
-1/+0
*
Docstring typo
Mark Dickinson
2008-08-06
1
-1/+1
*
Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, c...
Andrew M. Kuchling
2008-08-05
1
-6/+29
*
Remove use of callable() from pickle to silence warnings under -3.
Brett Cannon
2008-08-04
1
-1/+1
*
Remove tuple parameter unpacking in aifc to silence warnings under -3.
Brett Cannon
2008-08-04
1
-1/+2
*
Silence warnings under -3 triggered by wsgiref.
Brett Cannon
2008-08-04
4
-11/+12
*
Issue #1481296: (again!) Make conversion of a float NaN to an int or
Mark Dickinson
2008-08-04
1
-1/+2
*
Remove a use of callable() from Tkinter to silence warnings under -3.
Brett Cannon
2008-08-04
1
-1/+1
*
Remove a dict.has_key() and list.sort(cmp=) usage from tarfile to silence
Brett Cannon
2008-08-04
1
-2/+3
*
Remove usage of apply() in sqlite3 to silence warnings under -3.
Brett Cannon
2008-08-04
1
-3/+3
*
Remove dict.has_key() usage in the shelve module to silence warnings under -3.
Brett Cannon
2008-08-04
1
-3/+3
*
Remove dict.has_key() usage in xml.sax to silence warnings under -3.
Brett Cannon
2008-08-04
2
-4/+4
*
Remove the use of callable() in re to silence warnings under -3.
Brett Cannon
2008-08-04
1
-1/+1
*
Bug 3228: Explicitly supply the file mode to avoid creating executable files,
Andrew M. Kuchling
2008-08-04
2
-3/+30
*
Remove assignment to True/False and use of dict.has_key() to silence warnings
Brett Cannon
2008-08-04
1
-4/+10
*
Silence warnings under -3 about using dict.has_key() for modulefinder.
Brett Cannon
2008-08-04
1
-3/+4
*
Remove dict.has_key() usage in xml.dom.minidom to silence warnings while
Brett Cannon
2008-08-04
1
-4/+4
*
- Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword
Gregory P. Smith
2008-08-04
1
-4/+8
*
Remove dict.has_key() and apply() usage from the logging package to silence
Brett Cannon
2008-08-04
2
-17/+17
*
Remove a use of callable() in fileinput to silence a -3 warning.
Brett Cannon
2008-08-03
1
-1/+1
*
Move filecmp from using dict.has_key() to dict.__contains__() to silence
Brett Cannon
2008-08-03
1
-3/+3
*
Remove a dict.has_key() usage in email._parseaddr found while running -3.
Brett Cannon
2008-08-03
1
-1/+1
*
Remove Barry's love of deprecated syntax to silence warnings in the email
Brett Cannon
2008-08-03
6
-13/+13
*
Remove a dict.has_key() use in DocXMLRPCServer that comes up under -3.
Brett Cannon
2008-08-03
1
-1/+1
*
Remove a dict.has_key() and callable() usage in SimpleXMLRPCServer as triggered
Brett Cannon
2008-08-03
1
-2/+2
*
Silence -3 warnings in pstats: a dict.has_key() usage and backport solution to
Brett Cannon
2008-08-03
1
-2/+12
*
Remove a dict.has_key() usage in profile to silence a -3 DeprecationWarning.
Brett Cannon
2008-08-03
1
-1/+1
*
Remove a use of list.sort(cmp=) to silence a -3 DeprecationWarning in
Brett Cannon
2008-08-03
1
-2/+1
*
Silence SyntaxWarning and DeprecationWarning in pydoc triggered by tuple
Brett Cannon
2008-08-03
1
-10/+15
*
Silence some SyntaxWarnings for tuple unpacking in a parameter list for
Brett Cannon
2008-08-03
1
-2/+4
*
Preemptively backport the relevant parts of r65420
Antoine Pitrou
2008-08-02
1
-0/+3
*
Issue #3039: Fix TarFileCompat.writestr() which always raised an
Lars Gustäbel
2008-08-02
1
-4/+7
*
Issue #799428: Fix Tkinter.Misc._nametowidget to unwrap
Martin v. Löwis
2008-08-02
1
-9/+9
*
Remove a __getitem__() removal on an exception to silence a warning triggered
Brett Cannon
2008-08-02
1
-1/+1
[prev]
[next]