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
*
gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (#97768)
Adam Turner
2022-10-05
34
-241/+241
*
gh-91539: improve performance of get_proxies_environment (#91566)
Pieter Eendebak
2022-10-05
2
-10/+17
*
build(deps): bump actions/stale from 5 to 6 (#97701)
dependabot[bot]
2022-10-05
1
-1/+1
*
GH-95172 Make the same version `versionadded` oneline (#95172)
180909
2022-10-05
1
-2/+1
*
gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...
Kumar Aditya
2022-10-05
3
-6/+33
*
gh-93738: Documentation C syntax (Function glob patterns -> literal markup) (...
Adam Turner
2022-10-05
7
-20/+20
*
gh-93357: Port test cases to IsolatedAsyncioTestCase, part 2 (#97896)
Oleg Iarygin
2022-10-05
1
-29/+15
*
gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...
Serhiy Storchaka
2022-10-05
3
-1/+20
*
gh-97758: Fix a crash in getpath_joinpath() called without arguments (GH-97759)
Serhiy Storchaka
2022-10-05
1
-1/+1
*
gh-74696: Pass root_dir to custom archivers which support it (GH-94251)
Serhiy Storchaka
2022-10-05
5
-17/+77
*
gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs (#97662)
Jia Junjie
2022-10-05
1
-1/+3
*
gh-87092: bring compiler code closer to a preprocessing-opt-assembler organis...
Irit Katriel
2022-10-05
2
-40/+62
*
GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...
Guido van Rossum
2022-10-05
10
-2/+129
*
gh-93738: Documentation C syntax (:c:type:`PyTypeObject*` -> :c:expr:`PyTypeO...
Adam Turner
2022-10-05
2
-2/+2
*
gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...
andrei kulakov
2022-10-05
3
-1/+9
*
Add re.VERBOSE flag documentation example (#97678)
Athos Ribeiro
2022-10-05
1
-1/+2
*
gh-97654: Add auto exception chaining example to tutorial (#97703)
Shahriar Heidrich
2022-10-05
1
-5/+23
*
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...
Mark Shannon
2022-10-05
22
-99/+165
*
GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...
Brandt Bucher
2022-10-05
5
-4/+75
*
gh-97837: Change deprecation warning message in `unittest` (#97838)
Nikita Sobolev
2022-10-05
5
-8/+37
*
gh-95913: Copyedit/improve Implementation Changes What's New section (#97720)
C.A.M. Gerlach
2022-10-05
1
-17/+27
*
gh-93738: Documentation C syntax (:c:type: to :c:expr:, misc. cases) (#97775)
Adam Turner
2022-10-04
4
-7/+7
*
gh-93738: Documentation C syntax (:c:type:`FILE` -> :c:expr:`FILE`) (#97769)
Adam Turner
2022-10-04
3
-8/+8
*
gh-93738: Documentation C syntax (:c:type:`TYPE` -> :c:expr:`TYPE`) (#97770)
Adam Turner
2022-10-04
1
-2/+2
*
gh-93738: Documentation C syntax (Use `c:struct`) (#97772)
Adam Turner
2022-10-04
6
-15/+15
*
gh-93738: Documentation C syntax (:c:data:`view->obj` -> :c:expr:`view->obj`)...
Adam Turner
2022-10-04
1
-5/+5
*
gh-95913: Copyedit/improve Other Language Changes What's New section (#97719)
C.A.M. Gerlach
2022-10-04
1
-31/+36
*
gh-93738: Documentation C syntax (:c:type:`PyObject` -> :c:expr:`PyObject`) (...
Adam Turner
2022-10-04
10
-30/+30
*
gh-93738: Documentation C syntax (:c:type:`PyInterpreterState *` -> :c:expr:`...
Adam Turner
2022-10-04
1
-1/+1
*
gh-93738: Documentation C syntax (:c:type:`PyTupleObject*` -> :c:expr:`PyTupl...
Adam Turner
2022-10-04
1
-1/+1
*
gh-93738: Documentation C syntax (:c:type:`PyBytesObject*` -> :c:expr:`PyByte...
Adam Turner
2022-10-04
1
-1/+1
*
gh-93738: Documentation C syntax (:c:type:`PyUnicodeObject*` -> :c:expr:`PyUn...
Adam Turner
2022-10-04
1
-1/+1
*
gh-93738: Documentation C syntax (:c:type:`Py_UNICODE*` -> :c:expr:`Py_UNICOD...
Adam Turner
2022-10-04
1
-1/+1
*
gh-88355: Fix backslashes in AF_PIPE (#96543)
cousteau
2022-10-04
1
-2/+2
*
gh-95913: Move py.exe to appropriate What's New section & refine text (#97718)
C.A.M. Gerlach
2022-10-04
1
-22/+26
*
gh-58451: Add optional delete_on_close parameter to NamedTemporaryFile (GH-97...
Ev2geny
2022-10-04
5
-51/+216
*
gh-97008: Add a Python implementation of AttributeError and NameError suggest...
Ćukasz Langa
2022-10-04
8
-520/+50707
*
gh-96448: fix documentation for _thread.lock.acquire (#96449)
Daniel Giger
2022-10-04
1
-5/+5
*
gh-90301: Doc: Add references to PEP 686 (#96816)
Inada Naoki
2022-10-04
2
-7/+14
*
GH-95913: Update what's new in 3.11 for asyncio (#97806)
Guido van Rossum
2022-10-04
1
-16/+40
*
gh-93357: Start porting asyncio server test cases to IsolatedAsyncioTestCase ...
Oleg Iarygin
2022-10-04
1
-173/+119
*
gh-96142: add missing params to `dataclass._DataclassParams` (gh-96382)
Nikita Sobolev
2022-10-04
3
-3/+47
*
GH-82604: fix docs about configuring selector (#97755)
Kumar Aditya
2022-10-04
1
-3/+6
*
gh-97754: Update doc for default location of per-user installs on Windows (GH...
Ben Faulhaber
2022-10-04
1
-3/+6
*
gh-97731: fix distclean target to clean docs (#97732)
Skip Montanaro
2022-10-04
1
-4/+3
*
gh-97670: Remove sys.getdxp() and analyze_dxp.py script (#97671)
Victor Stinner
2022-10-04
6
-201/+7
*
Adjust stable ABI internal documentation (GH-96896)
William Woodruff
2022-10-04
1
-7/+14
*
gh-97669: Remove outdated example scripts (#97675)
Victor Stinner
2022-10-04
48
-7050/+9
*
gh-97709: Included newline separator in Mandelbrot set (#97737)
matheusja
2022-10-04
1
-2/+2
*
gh-97816: Remove unused variables in `mutliprocessing.managers.Server` (#97817)
Koki Saito
2022-10-04
2
-1/+1
[next]