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 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
*
Remove a dict.has_key() use to silence a warning when running under -3.
Brett Cannon
2008-08-02
1
-1/+1
*
Remove a dict.has_key() use to silence a warning raised under -3.
Brett Cannon
2008-08-02
1
-1/+1
*
Remove a tuple unpacking in a parameter list to remove a SyntaxWarning raised
Brett Cannon
2008-08-02
1
-1/+3
*
Remove a tuple unpacking in a parameter list to suppress the SyntaxWarning with
Brett Cannon
2008-08-02
1
-1/+2
*
Remove a use of callable() to silence the warning triggered under -3.
Brett Cannon
2008-08-01
1
-1/+1
*
Silence (Syntax|Deprecation)Warning for 'inspect'. Had to remove tuple
Brett Cannon
2008-08-01
1
-5/+9
*
Remove use of tuple unpacking and dict.has_key() so as to silence
Brett Cannon
2008-08-01
2
-4/+5
*
Remove assignment to True/False to silence the SyntaxWarning that is triggered
Brett Cannon
2008-08-01
1
-5/+5
*
Fix a DeprecationWarning about __getitem__() and exceptions in the 'traceback...
Brett Cannon
2008-08-01
1
-1/+1
*
Correct a crash when two successive unicode allocations fail with a MemoryError:
Amaury Forgeot d'Arc
2008-07-31
1
-0/+14
*
Remove a dummy test that was checked in by mistake
Amaury Forgeot d'Arc
2008-07-31
1
-8/+0
*
#3479: unichr(2**32) used to return u'\x00'.
Amaury Forgeot d'Arc
2008-07-31
1
-0/+1
*
Security patches from Apple: prevent int overflow when allocating memory
Neal Norwitz
2008-07-31
4
-9/+161
*
remove usage of MacOS from Tkinter
Benjamin Peterson
2008-07-31
1
-10/+0
*
Rename testSum to testFsum and move it to proper place in test_math.py
Mark Dickinson
2008-07-31
1
-97/+96
*
Backport test.support.fcmp() from 3.0 to silence -3 warnings.
Brett Cannon
2008-07-31
1
-5/+4
*
Alter recipe to show how to call izip_longest() with
Raymond Hettinger
2008-07-31
1
-2/+1
*
#2542: now that issubclass() may call arbitrary code,
Amaury Forgeot d'Arc
2008-07-31
1
-1/+34
*
I mess up again; BufferError inherits StandardError
Benjamin Peterson
2008-07-30
1
-1/+1
*
add BufferError to the exception hieracrchy
Benjamin Peterson
2008-07-30
1
-0/+1
*
Rename math.sum to math.fsum
Mark Dickinson
2008-07-30
2
-8/+8
*
getrandombits is actually getrandbits
Benjamin Peterson
2008-07-30
1
-3/+3
*
Neaten-up the itertools recipes.
Raymond Hettinger
2008-07-30
1
-6/+4
*
More modifications to tests for math.sum: replace the Python
Mark Dickinson
2008-07-29
1
-39/+39
*
Be less strict with replication timeouts (the machine
Jesus Cea
2008-07-29
1
-7/+19
*
Refinements in the bsddb testsuite
Jesus Cea
2008-07-29
2
-4/+4
[next]