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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #9260: A finer-grained import lock.
Antoine Pitrou
2012-05-17
2
-2975/+3389
*
Avoid "warning: no newline at end of file" in importlib.h.
Antoine Pitrou
2012-05-16
2
-1/+3
*
use Py_ssize_t for ast sequence lengths
Benjamin Peterson
2012-05-15
1
-2/+2
*
Document f4d7ad6c9d6e.
Martin v. Löwis
2012-05-15
1
-2/+2
*
Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353.
Martin v. Löwis
2012-05-15
2
-4/+4
*
apparently importlib.h wants to be updated
Benjamin Peterson
2012-05-15
1
-7/+7
*
PEP 415: Implement suppression of __context__ display with an exception attri...
Benjamin Peterson
2012-05-15
2
-15/+15
*
Fix #13210. Port the Windows build from VS2008 to VS2010.
Brian Curtin
2012-05-13
1
-0/+8
*
Issue #13959: Have
Brett Cannon
2012-05-11
1
-2311/+2332
*
Update importlib.h
Brett Cannon
2012-05-11
1
-2852/+2853
*
Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.
Larry Hastings
2012-05-09
1
-18/+8
*
Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().
Larry Hastings
2012-05-08
1
-0/+1
|
\
|
*
Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.
Larry Hastings
2012-05-08
1
-0/+1
*
|
Issue #14583: Fix importlib bug when a package's __init__.py would first impo...
Antoine Pitrou
2012-05-07
2
-306/+309
*
|
Issue #14705: Added support for the new 'p' format unit to skipitem().
Larry Hastings
2012-05-07
1
-0/+1
*
|
Fix too early decrefs.
Antoine Pitrou
2012-05-06
1
-2/+2
*
|
Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.
Larry Hastings
2012-05-05
1
-0/+12
*
|
Fix typo in changeset eb5c5c23ca9b.
Nadeem Vawda
2012-05-05
1
-1/+1
*
|
Clean up a docstring.
Brett Cannon
2012-05-04
1
-122/+112
*
|
Simplify code for load_dynamic()
Antoine Pitrou
2012-05-04
1
-43/+3
*
|
Issue #13959: Move module type constants to Lib/imp.py.
Brett Cannon
2012-05-04
2
-37/+0
*
|
Remove dead Windows code which no longer will compile.
Brett Cannon
2012-05-04
1
-6/+0
*
|
update importlib.h
Brett Cannon
2012-05-04
1
-1/+1
*
|
Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py.
Brett Cannon
2012-05-04
11
-3067/+2898
*
|
Issue #14127: Add ns= parameter to utime, futimes, and lutimes.
Larry Hastings
2012-05-03
1
-1/+1
*
|
strip is_ prefixes on clock_info fields
Benjamin Peterson
2012-05-01
1
-9/+9
*
|
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Brett Cannon
2012-04-29
3
-103/+12
*
|
Issue #13959: Re-implement imp.NullImporter in Lib/imp.py.
Brett Cannon
2012-04-29
1
-139/+2
*
|
Issue #14521: Make result of float('nan') and float('-nan') more consistent a...
Mark Dickinson
2012-04-29
2
-5/+84
*
|
Issue #14428, #14397: Implement the PEP 418
Victor Stinner
2012-04-29
1
-8/+54
*
|
Issue #14646: __import__() now sets __loader__ if need be.
Brett Cannon
2012-04-27
1
-2398/+2435
*
|
Issue #14605: Don't error out if get_importer() returns None.
Brett Cannon
2012-04-27
1
-1104/+1097
*
|
Issue #14605: Use None in sys.path_importer_cache to represent no
Brett Cannon
2012-04-27
2
-1105/+1066
*
|
Issue #14605: Stop having implicit entries for sys.meta_path.
Brett Cannon
2012-04-27
1
-2961/+2967
*
|
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
Victor Stinner
2012-04-27
3
-4/+8
*
|
merge heads
Benjamin Peterson
2012-04-26
3
-3062/+2986
|
\
\
|
*
|
Issue #14605: Make explicit the entries on sys.path_hooks that used to
Brett Cannon
2012-04-26
2
-3060/+2984
|
*
|
Update importlib.h
Brett Cannon
2012-04-26
1
-7/+7
|
*
|
Merge
Brett Cannon
2012-04-26
1
-113/+113
|
|
\
\
|
*
|
|
Issue #14605: Insert to the front of sys.path_hooks instead of appending.
Brett Cannon
2012-04-25
1
-2/+2
*
|
|
|
only incref when using borrowing functions
Benjamin Peterson
2012-04-26
1
-1/+1
|
|
/
/
|
/
|
|
*
|
|
Issue #14605 and #14642:
Marc-Andre Lemburg
2012-04-25
1
-113/+113
|
/
/
*
|
Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.
Marc-Andre Lemburg
2012-04-25
1
-1421/+1421
*
|
Close #14648: Compute correctly maxchar in str.format() for substrin
Victor Stinner
2012-04-23
1
-4/+2
*
|
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Benjamin Peterson
2012-04-23
1
-57/+18
*
|
inherit maxchar of field value where needed (closes #14648)
Benjamin Peterson
2012-04-23
1
-0/+3
*
|
Issue #14605: Expose importlib.abc.FileLoader and
Brett Cannon
2012-04-22
1
-2971/+2904
*
|
Issue #13959: Continue to try to accomodate altsep in importlib by not
Brett Cannon
2012-04-22
1
-2966/+2977
*
|
Revert to os.path.join() semantics for path manipulation in importlib
Brett Cannon
2012-04-22
1
-2974/+2964
*
|
Update importlib.h
Brett Cannon
2012-04-22
1
-2967/+2967
[next]