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
*
Revert the modification of e.strerror in 3.2 as that kind of change could
Gregory P. Smith
2012-06-03
1
-3/+0
*
Move the 14992 note to the correct section.
Gregory P. Smith
2012-06-03
1
-5/+5
*
Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
Gregory P. Smith
2012-06-03
3
-8/+53
*
PEP 3131: support non-ASCII characters in auto-completion of identifiers.
Martin v. Löwis
2012-06-03
2
-2/+2
*
Do not try to insert control characters.
Martin v. Löwis
2012-06-03
1
-1/+1
*
Issue #14937: Perform auto-completion of filenames in strings even for non-AS...
Martin v. Löwis
2012-06-03
3
-2/+24
*
Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name
Terry Jan Reedy
2012-06-03
1
-15/+17
*
Issue 10365: Add and replace comments; condense defaulted attribute access.
Terry Jan Reedy
2012-06-03
1
-16/+13
*
backport c4bd68be5fc6 to 3.2
Sandro Tosi
2012-06-02
1
-1/+1
*
Issue #14926: fix docstring highlight
Sandro Tosi
2012-06-02
1
-1/+1
*
refer to time.strftime
Sandro Tosi
2012-06-02
1
-8/+8
*
#14957: fix doc typo.
R David Murray
2012-06-02
1
-1/+1
*
don't leak if the __class__ closure is set
Benjamin Peterson
2012-06-02
1
-4/+2
*
#14957: clarify splitlines docs.
R David Murray
2012-06-01
1
-1/+7
*
Issue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck
Sandro Tosi
2012-06-01
1
-1/+1
*
Issue #14962: Update text coloring in IDLE shell window after changing
Ned Deily
2012-05-31
2
-0/+8
*
Added test skip under Windows, as not applicable there.
Vinay Sajip
2012-05-31
1
-0/+1
*
Add news item for #14943
Brian Curtin
2012-05-29
1
-0/+3
*
Fix #14943. Update the proper default value and list the proper argument name...
Brian Curtin
2012-05-29
1
-3/+3
*
Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
Ned Deily
2012-05-29
2
-1/+3
*
Issue #14775: Fix a potential quadratic dict build-up due to the garbage coll...
Antoine Pitrou
2012-05-28
3
-3/+61
*
Issue #9041: raised exception is misleading
Meador Inge
2012-05-28
3
-25/+19
*
Issue #14443: Tell rpmbuild to use the correct version of Python
Nick Coghlan
2012-05-28
2
-1/+5
*
Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.
Terry Jan Reedy
2012-05-28
2
-1/+4
*
Issue12510: Attempting to get invalid tooltip no longer closes Idle.
Terry Jan Reedy
2012-05-28
2
-3/+9
*
#11785: fix the :mod: references in email package submodule titles.
R David Murray
2012-05-27
10
-20/+20
*
#10365 Trim trailing whitespace
Terry Jan Reedy
2012-05-27
1
-1/+1
*
Issue #10365: File open dialog now works instead of crashing
Terry Jan Reedy
2012-05-27
3
-6/+17
*
Issue #14876: Use user-selected font for highlight configuration.
Terry Jan Reedy
2012-05-26
2
-2/+6
*
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ...
Senthil Kumaran
2012-05-26
2
-1/+4
*
Issue #14881: Allow normal non-main thread to spawn a dummy process
Richard Oudkerk
2012-05-25
1
-1/+2
*
#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack
2012-05-25
2
-3/+20
*
#14863: Update the documentation of os.fdopen()
Petri Lehtinen
2012-05-24
2
-15/+8
*
Issue #14036: return None when port in urlparse cross 65535
Senthil Kumaran
2012-05-24
3
-0/+11
*
Remove duplicate entries in Misc/NEWS.
Florent Xicluna
2012-05-23
1
-20/+0
*
#14472: Update .gitignore
Petri Lehtinen
2012-05-22
3
-0/+22
*
Restore [] where default arguments are not keywords
Hynek Schlawack
2012-05-22
4
-4/+4
*
#14875: Use float('inf') instead of float('1e66666') in the json module.
Ezio Melotti
2012-05-21
2
-2/+3
*
#14804: Remove [] around optional arguments with default values
Hynek Schlawack
2012-05-21
8
-11/+11
*
Fix `versionchanged` tags for json.load
Hynek Schlawack
2012-05-20
1
-1/+1
*
Fixes #14864: Added documentation on how to undo the effects of a logging.dis...
Vinay Sajip
2012-05-20
1
-1/+2
*
Document when json.load's parse_constant behaviour changed
Hynek Schlawack
2012-05-20
1
-0/+3
*
Fix for issue14426 - buildbots here I come
Senthil Kumaran
2012-05-20
1
-1/+1
*
news for Issue14426
Senthil Kumaran
2012-05-20
1
-0/+3
*
Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Pa...
Senthil Kumaran
2012-05-20
2
-5/+5
*
#14494: Document that absolute imports became default in 3.0 instead of 2.7.
Petri Lehtinen
2012-05-19
4
-2/+7
*
#14072: Fix parsing of tel URIs in urlparse by making the check for ports str...
Ezio Melotti
2012-05-19
3
-6/+16
*
Fix Issue14721: Send Content-length: 0 for empty body () in the http.client r...
Senthil Kumaran
2012-05-19
3
-1/+32
*
Issue9374 - Generic parsing of query and fragment portion of urls for any scheme
Senthil Kumaran
2012-05-19
3
-9/+14
*
#14798: pyclbr now raises ImportError instead of KeyError for missing packages
Petri Lehtinen
2012-05-18
4
-0/+12
[next]