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
...
*
backout changeset e0510a3bdf8f - due to buildbot failures. Ref: Issue #8797
Senthil Kumaran
2014-08-16
3
-90/+18
*
Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands from
Victor Stinner
2014-08-16
1
-4/+6
*
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ...
Senthil Kumaran
2014-08-16
3
-18/+90
*
Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.
Terry Jan Reedy
2014-08-15
1
-4/+5
*
Issue #22193: Added private function _PySys_GetSizeOf() needed to implement
Serhiy Storchaka
2014-08-14
2
-33/+46
*
Decreased memory requirements of new tests added in issue21448.
Serhiy Storchaka
2014-08-12
1
-1/+2
*
Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing ...
Serhiy Storchaka
2014-08-12
3
-11/+82
*
Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
Serhiy Storchaka
2014-08-12
2
-3/+11
*
Issue #22178: Fix the date of the Windows epoch (Jan 1, 1601).
Zachary Ware
2014-08-11
1
-1/+1
*
Issue #22174: Clean-up grammar and ambiguities in property() docs.
Raymond Hettinger
2014-08-10
2
-7/+14
*
- Issue #22176: Update the ctypes module's libffi to v3.1. This release
doko@ubuntu.com
2014-08-10
136
-13677/+28336
*
remove casts
Benjamin Peterson
2014-08-10
1
-4/+4
*
test for 2 arg exec case
Benjamin Peterson
2014-08-10
1
-0/+5
*
restore runtime exec test (#21591)
Benjamin Peterson
2014-08-10
1
-0/+9
*
Issue #14105: Stop removing breakpoints from Idle editors.
Terry Jan Reedy
2014-08-09
2
-1/+10
*
Issue #22160: Update OpenSSL to 1.0.1i for the Windows build.
Zachary Ware
2014-08-07
3
-3/+9
*
#22092: use absolute imports in unittest tests. Patch by Vajrasky Kok.
Ezio Melotti
2014-08-07
7
-5/+8
*
Issue #18004: test_overflow in test_list by mistake consumed 40 GiB of memory
Serhiy Storchaka
2014-08-06
2
-1/+4
*
Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular
Serhiy Storchaka
2014-08-06
2
-11/+21
*
Issue #22130: Corrected fileConfig() documentation.
Vinay Sajip
2014-08-05
1
-1/+1
*
#21928: clarify functools.wraps docs.
Ezio Melotti
2014-08-05
1
-3/+4
*
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more
Berker Peksag
2014-08-05
3
-0/+16
*
#18034: update FAQ to suggest importlib.import_module instead of __import__. ...
Ezio Melotti
2014-08-04
2
-12/+4
*
PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments,
Terry Jan Reedy
2014-08-04
1
-565/+603
*
Issue #13540: Merge commits
Jason R. Coombs
2014-08-03
1
-19/+53
|
\
|
*
Issue #13540: Update references to Action class to match syntax used for othe...
Jason R. Coombs
2014-08-03
1
-2/+2
|
*
Issue #13540: Removed redundant documentation about Action instance attribute...
Jason R. Coombs
2014-07-20
1
-49/+26
|
*
Issue #13540: Expanded argparse documents to clarify the action API
Jason R. Coombs
2011-12-14
1
-19/+76
*
|
Fix typo in comment.
Raymond Hettinger
2014-08-02
1
-1/+1
*
|
- update config.guess and config.sub to support openrisc.
doko@ubuntu.com
2014-08-01
2
-175/+40
*
|
Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata"
Serhiy Storchaka
2014-07-31
4
-7/+39
*
|
Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog.
Terry Jan Reedy
2014-07-30
1
-29/+38
*
|
Issue #21951: Temporary skip crashing test_user_command on AIX.
Serhiy Storchaka
2014-07-30
1
-0/+1
*
|
Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().
Victor Stinner
2014-07-29
3
-9/+124
*
|
Issue #21591: add test for qualified exec in tuple form.
Robert Jordens
2014-07-29
2
-0/+17
*
|
Issue #21591: Handle exec backwards compatibility in the AST builder.
Dirkjan Ochtman
2014-07-29
3
-9/+15
*
|
Issue #19612: subprocess.communicate() now also ignores EINVAL when using at
Victor Stinner
2014-07-28
2
-1/+12
*
|
Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py.
Terry Jan Reedy
2014-07-27
1
-29/+28
*
|
Modernize turtledemo with conditional expressions; remove duplicate line.
Terry Jan Reedy
2014-07-27
1
-19/+6
*
|
Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError
Victor Stinner
2014-07-26
3
-2/+30
*
|
socketmodule.c: backport INVALID_SOCKET from Python 3.5 to simplify the code
Victor Stinner
2014-07-26
1
-14/+5
*
|
Issue #19875: Fix random test_getsockaddrarg() failure.
Charles-François Natali
2014-07-26
1
-9/+17
*
|
Issue #21958: Define HAVE_ROUND when building with VS 2013 and above.
Zachary Ware
2014-07-25
2
-0/+8
*
|
Issue #21990: Cleanup unnecessary inner class definition in saxutils.
Raymond Hettinger
2014-07-25
2
-5/+11
*
|
Issue #22061: Add deprecation warnings in empty obsolete methods.
Serhiy Storchaka
2014-07-25
1
-2/+9
*
|
Issue #22061: remove call of useless function slated for removal.
Terry Jan Reedy
2014-07-25
1
-1/+0
*
|
Issue #22053: Make help work, after previous patch for this issue disabled it
Terry Jan Reedy
2014-07-25
1
-18/+9
*
|
Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off")
Victor Stinner
2014-07-24
1
-1/+5
*
|
Issue #16133: The asynchat.async_chat.handle_read() method now ignores
Victor Stinner
2014-07-24
4
-2/+48
*
|
Issue #1730136: Fix comparison between a tk Font object and an object of a
Serhiy Storchaka
2014-07-24
3
-1/+39
[prev]
[next]