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
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-100288: Specialise LOAD_ATTR_METHOD for managed dictionaries (GH-100289)
Ken Jin
2022-12-23
1
-0/+1
*
gh-92216: improve performance of `hasattr` for type objects (GH-99979)
Pieter Eendebak
2022-12-23
1
-0/+1
*
gh-99110: Initialize `frame->previous` in init_frame to fix segmentation faul...
Bill Fisher
2022-12-23
1
-0/+2
*
gh-76963: PEP3118 itemsize of an empty ctypes array should not be 0 (GH-5576)
Eric Wieser
2022-12-23
1
-0/+3
*
gh-85432: Harmonise parameter names between C and pure-Python implementations...
Alex Waygood
2022-12-22
1
-0/+5
*
gh-100344: Add C implementation for `asyncio.current_task` (#100345)
Itamar Ostricher
2022-12-22
1
-0/+2
*
GH-99554: Pack location tables more effectively (GH-99556)
Brandt Bucher
2022-12-22
1
-0/+1
*
GH-69564: Clarify use of octal format of mode argument in help(os.chmod) (#20...
amaajemyfren
2022-12-21
1
-0/+1
*
gh-78878: Fix crash when creating an instance of `_ctypes.CField` (#14837)
Hai Shi
2022-12-21
1
-0/+1
*
gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)
Dominic Socular
2022-12-21
1
-0/+1
*
GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100...
Kumar Aditya
2022-12-21
1
-0/+1
*
GH-100363: Speed up `asyncio.get_running_loop` (#100364)
Kumar Aditya
2022-12-21
1
-0/+1
*
gh-85267: Improvements to inspect.signature __text_signature__ handling (#98796)
Shantanu
2022-12-21
1
-0/+6
*
gh-100188: Reduce misses in BINARY_SUBSCR_(LIST/TUPLE)_INT (#100189)
Dennis Sweeney
2022-12-20
1
-0/+3
*
gh-99576: Fix cookiejar file that was not truncated for some classes (GH-99616)
Nikita Sobolev
2022-12-20
1
-0/+2
*
gh-99925: Fix inconsistency in `json.dumps()` error messages (GH-99926)
František Nesveda
2022-12-20
1
-0/+4
*
gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_re...
Richard Kojedzinszky
2022-12-20
1
-0/+2
*
gh-89051: Add ssl.OP_LEGACY_SERVER_CONNECT (#93927)
Thomas Grainger
2022-12-20
1
-0/+1
*
gh-89727: Fix os.walk RecursionError on deep trees (#99803)
Jon Burdo
2022-12-19
1
-0/+3
*
gh-94912: Added marker for non-standard coroutine function detection (#99247)
Carlton Gibson
2022-12-18
1
-0/+2
*
gh-100272: Fix JSON serialization of OrderedDict (GH-100273)
Serhiy Storchaka
2022-12-17
1
-0/+1
*
gh-99240: Reset pointer to NULL when the pointed memory is freed in argument ...
colorfulappl
2022-12-17
1
-0/+2
*
gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...
Barney Gale
2022-12-17
1
-0/+3
*
gh-99540: Constant hash for _PyNone_Type to aid reproducibility (GH-99541)
yonillasky
2022-12-16
1
-0/+1
*
gh-100039: enhance __signature__ to work with str and callables (GH-100168)
Ethan Furman
2022-12-16
1
-0/+1
*
GH-90043: Handle NaNs in COMPARE_OP_FLOAT_JUMP (GH-100278)
Brandt Bucher
2022-12-16
1
-0/+2
*
gh-78997: AttributeError if loading fails in LibraryLoader.__getattr__
Ateeq Sharfuddin
2022-12-15
1
-0/+3
*
GH-100234: Set a default value for random.expovariate() (GH-100235)
Raymond Hettinger
2022-12-15
1
-0/+2
*
GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...
Mark Shannon
2022-12-14
1
-0/+2
*
GH-100143: Improve collecting pystats for parts of runs (GH-100144)
Michael Droettboom
2022-12-12
1
-0/+3
*
gh-99955: standardize return values of functions in compiler's code-gen (#100...
Irit Katriel
2022-12-12
1
-0/+1
*
gh-79218: Define `MS_WIN64` macro for Mingw-w64 64bit on Windows (GH-100137)
GalaxySnail
2022-12-12
1
-0/+1
*
gh-88500: Reduce memory use of `urllib.unquote` (#96763)
Gregory P. Smith
2022-12-11
1
-0/+2
*
gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...
DarioDaF
2022-12-10
1
-0/+2
*
gh-99582: freeze `zipimport` into `_bootstrap_python` (#99583)
Kai Zhang
2022-12-10
1
-0/+1
*
bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or ...
andrei kulakov
2022-12-09
1
-0/+2
*
bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error ...
Shreyan Avigyan
2022-12-09
1
-0/+3
*
GH-98522: Add version number to code objects. (GH-98525)
Mark Shannon
2022-12-09
1
-0/+3
*
gh-88267: Avoid DLL exporting functions from static builds on Windows(GH-99888)
Christian Rendina
2022-12-09
1
-0/+1
*
GH-100110: Specialize FOR_ITER for tuples (GH-100109)
Ken Jin
2022-12-09
1
-0/+1
*
gh-100098: [Enum] insist on actual tuples, no subclasses, for auto (GH-100099)
Ethan Furman
2022-12-08
1
-0/+1
*
gh-98030: socket: add missing TCP socket options (#98031)
Matthieu Baerts
2022-12-08
1
-0/+7
*
gh-92120: The docstring of enum.Enum is invalid in reST (GH-92122)
Takeshi KOMIYA
2022-12-08
1
-0/+1
*
gh-98778: Update HTTPError to initialize properly even if fp is None (gh-99966)
Dong-hee Na
2022-12-08
1
-0/+2
*
gh-100086: Add build info to test.libregrtest (#100093)
Victor Stinner
2022-12-08
1
-0/+3
*
gh-83035: handle decorator with nested parens in inspect.getsource (#99654)
Carl Meyer
2022-12-07
1
-0/+1
*
gh-98724: Fix Py_CLEAR() macro side effects (#99100) (#100070)
Victor Stinner
2022-12-07
1
-0/+3
*
gh-93018: Fix for the compatibility problems with expat (gh-93900)
Matěj Cepl
2022-12-07
1
-0/+1
*
gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...
Pablo Galindo Salgado
2022-12-06
1
-0/+2
*
gh-94943: [Enum] improve repr() when inheriting from a dataclass (GH-99740)
Ethan Furman
2022-12-06
1
-0/+5
[next]