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
/
Misc
/
NEWS.d
/
next
/
Core and Builtins
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32329: Fix -R option for hash randomization (#4873)
Victor Stinner
2017-12-14
1
-0/+5
*
bpo-32226: Implementation of PEP 560 (core components) (#4732)
Ivan Levkivskyi
2017-12-14
1
-0/+2
*
bpo-32225: Implementation of PEP 562 (#4731)
Ivan Levkivskyi
2017-12-14
1
-0/+2
*
bpo-29469: Move constant folding to AST optimizer (GH-2858)
INADA Naoki
2017-12-14
1
-0/+2
*
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
Victor Stinner
2017-12-13
1
-0/+1
*
bpo-32230: Set sys.warnoptions with -X dev (#4820)
Victor Stinner
2017-12-12
2
-0/+7
*
bpo-31506: Improve the error message logic for class instantiation (GH-4740)
Sanyam Khurana
2017-12-10
1
-0/+2
*
bpo-32260: don't byte swap siphash keys (#4771)
Benjamin Peterson
2017-12-09
1
-0/+3
*
closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)
Benjamin Peterson
2017-12-09
1
-0/+3
*
Update NEWS and pydoc topics.
Ned Deily
2017-12-05
22
-69/+0
*
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
Serhiy Storchaka
2017-12-03
1
-0/+2
*
bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)
Nick Coghlan
2017-12-03
1
-0/+5
*
bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...
Serhiy Storchaka
2017-12-01
1
-0/+3
*
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
Victor Stinner
2017-11-24
1
-0/+4
*
bpo-32043: New "developer mode": "-X dev" option (#4413)
Victor Stinner
2017-11-16
1
-0/+2
*
bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650)
Serhiy Storchaka
2017-11-15
1
-0/+2
*
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka
2017-11-15
1
-0/+3
*
bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....
Serhiy Storchaka
2017-11-15
1
-0/+9
*
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka
2017-11-15
1
-0/+4
*
bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160)
xdegaye
2017-11-12
1
-0/+1
*
bpo-28180: Fix the implementation of PEP 538 on Android (GH-4334)
xdegaye
2017-11-12
1
-0/+4
*
bpo-31626: Fixed a bug in debug memory allocator. (#3844)
Serhiy Storchaka
2017-10-31
1
-0/+2
*
bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158)
Serhiy Storchaka
2017-10-28
1
-0/+3
*
bpo-28936: Detect lexically first syntax error first (#4097)
Ivan Levkivskyi
2017-10-26
1
-0/+2
*
bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (#4118)
Serhiy Storchaka
2017-10-26
1
-0/+3
*
bpo-31845: Fix reading flags from environment (GH-4105)
Nick Coghlan
2017-10-25
1
-0/+1
*
bpo-30817: Fix PyErr_PrintEx() when no memory (#2526)
xdegaye
2017-10-23
1
-0/+2
*
bpo-31781: Prevent crashes when calling methods of an uninitialized zipimport...
Oren Milman
2017-10-20
1
-0/+2
*
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
Serhiy Storchaka
2017-10-20
1
-0/+2
*
Add NEWS entry for opcode tracing change. (GH-4045)
George King
2017-10-19
1
-0/+7
*
bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014)
Zane Bitter
2017-10-17
1
-0/+3
*
bpo-31786: Make functions in the select module blocking when timeout is a sma...
Pablo Galindo
2017-10-17
1
-0/+3
*
Update NEWS and topics for 3.7.0a2
Ned Deily
2017-10-17
25
-52/+0
*
bpo-31558: Update NEWS and ACKS (#4013)
Ćukasz Langa
2017-10-16
1
-0/+5
*
bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...
Serhiy Storchaka
2017-10-08
1
-0/+2
*
bpo-31708: Allow async generator expressions in synchronous functions (#3905)
Yury Selivanov
2017-10-06
1
-0/+1
*
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Yury Selivanov
2017-10-06
1
-0/+1
*
bpo-30406: Make async and await proper keywords (#1669)
Jelle Zijlstra
2017-10-06
1
-0/+1
*
PEP 553 built-in breakpoint() function (bpo-31353) (#3355)
Barry Warsaw
2017-10-05
1
-0/+5
*
bpo-30404: The -u option now makes the stdout and stderr streams totally unbu...
Serhiy Storchaka
2017-10-04
1
-0/+2
*
bpo-31619: Fixed a ValueError when convert a string with large number of unde...
Serhiy Storchaka
2017-10-03
1
-0/+2
*
bpo-31415: Add `-X importtime` option (GH-3490)
INADA Naoki
2017-10-03
1
-0/+2
*
bpo-31336: Speed up type creation. (#3279)
scoder
2017-10-01
1
-0/+2
*
bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...
Oren Milman
2017-09-30
1
-0/+2
*
bpo-31574: importlib dtrace (#3749)
Christian Heimes
2017-09-29
1
-0/+1
*
bpo-31602: Fix an assertion failure in zipimporter.get_source() in case of a ...
Oren Milman
2017-09-29
1
-0/+2
*
bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad...
Oren Milman
2017-09-28
1
-0/+2
*
bpo-31588: Validate return value of __prepare__() methods (GH-3764)
Oren Milman
2017-09-27
1
-0/+2
*
bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in ...
Oren Milman
2017-09-25
1
-0/+2
*
bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __na...
Oren Milman
2017-09-24
1
-0/+2
[next]