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
Commit message (
Expand
)
Author
Age
Files
Lines
*
#3519: callee is an expression too.
Georg Brandl
2008-08-08
1
-1/+1
*
Remove buffer() usage in the socket module by just slicing directly on the
Brett Cannon
2008-08-08
2
-7/+7
*
Remove warnings generated for the suprocess module when run under -3. Required
Brett Cannon
2008-08-08
2
-9/+11
*
Change the warning emitted for using the buffer() object; memoryview() in 3.0
Brett Cannon
2008-08-08
1
-2/+1
*
Patch by Ian Charnas from issue 3517.
Guido van Rossum
2008-08-07
1
-0/+5
*
#1288615: Python code.interact() and non-ASCII input
Antoine Pitrou
2008-08-07
1
-0/+4
*
Add some items
Andrew M. Kuchling
2008-08-07
1
-5/+23
*
Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in
Brett Cannon
2008-08-06
3
-0/+35
*
Remove duplicate import
Mark Dickinson
2008-08-06
1
-1/+0
*
Docstring typo
Mark Dickinson
2008-08-06
1
-1/+1
*
Fix longstringitem definition. #3505.
Georg Brandl
2008-08-06
1
-1/+1
*
Tracker issue 3487: sre "bytecode" verifier.
Guido van Rossum
2008-08-05
1
-0/+474
*
#3367: revert rev. 65539: this change causes test_parser to fail
Andrew M. Kuchling
2008-08-05
1
-1/+1
*
#3367 from Kristjan Valur Jonsson:
Andrew M. Kuchling
2008-08-05
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
*
Add a note about all the modules/packages changed to silence -3 warnings. More
Brett Cannon
2008-08-04
1
-0/+7
*
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
3
-3/+9
*
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
*
more cleanup ups of the recently added warnings in the subprocess docs.
Gregory P. Smith
2008-08-04
1
-5/+6
*
Add missing NEWS entry for r65487
Nick Coghlan
2008-08-04
1
-0/+8
*
Issue 643841: better documentation of the special method lookup process, espe...
Nick Coghlan
2008-08-04
1
-43/+147
*
Adds a sanity check to avoid a *very rare* infinite loop due to a corrupt tls
Gregory P. Smith
2008-08-04
2
-1/+15
*
Clarify the meaning of the select() parameters and sync
Georg Brandl
2008-08-04
1
-12/+18
*
Template is always "tmp".
Georg Brandl
2008-08-04
1
-2/+1
*
Fix markup.
Georg Brandl
2008-08-04
1
-15/+12
*
Bug 3228: Explicitly supply the file mode to avoid creating executable files,
Andrew M. Kuchling
2008-08-04
2
-3/+30
*
issue1606: Add warnings to the subprocess documentation about common pitfalls
Gregory P. Smith
2008-08-04
1
-0/+16
*
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
2
-4/+12
*
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
*
Note the removal of several committers.
Georg Brandl
2008-08-03
1
-5/+12
[next]