Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
6da20a49507c46738632baf3e4bfe3bdd086155b
6da20a4
bpo-36301: Test Python init with isolated (GH-12569)
by Victor Stinner
· 6 years ago
6cd658b
bpo-34203: FAQ: improve wording of paragraph about 2.x vs. 3.x (GH-9821)
by Tal Einat
· 6 years ago
3b7e47a
bpo-36364: fix SharedMemoryManager examples (GH-12439)
by Pierre Glaser
· 6 years ago
f8ba6f5
bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)
by Victor Stinner
· 6 years ago
414b1cd
bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560)
by Victor Stinner
· 6 years ago
871309c
bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)
by Inada Naoki
· 6 years ago
b4d8f28
Post v3.8.0a3
by Łukasz Langa
· 6 years ago
9f966df
Merge tag 'v3.8.0a3'
by Łukasz Langa
· 6 years ago
0523c39
bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551)
by Zackery Spytz
· 6 years ago
3e700e4
Document that logging registers shutdown as an atexit handler (GH-12378)
by Andre Delfino
· 6 years ago
577277f
Fix "the the" in the idle docs. (GH-12549)
by Benjamin Peterson
· 6 years ago
2000495
bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)
by Victor Stinner
· 6 years ago
f78a5e9
bpo-36301: Add _Py_GetEnv() function (GH-12542)
by Victor Stinner
· 6 years ago
548cb60
bpo-34085: Improve wording on classmethod/staticmethod (#8228)
by Andre Delfino
· 6 years ago
360e1e4
bpo-36345: Add a new example in the documentation of wsgiref (#12511)
by Stéphane Wirtel
· 6 years ago
1075d16
bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)
by Victor Stinner
· 6 years ago
91759d9
bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using pgen (GH-12456)
by Pablo Galindo
· 6 years ago
027b09c
bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)
by Stefan Krah
· 6 years ago
d1e768a
bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)
by Raymond Hettinger
· 6 years ago
713a8ae
Add note to Queue.get() docs about block=True (GH-2223)
by Stephen Rosen
· 6 years ago
9a44885
v3.8.0a3
by Łukasz Langa
· 6 years ago
a6fbc4e
bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536)
by Victor Stinner
· 6 years ago
f72346c
bpo-36301: Cleanup preconfig code (GH-12535)
by Victor Stinner
· 6 years ago
68d228f
bpo-35884: Add string-keys-only microbenchmark for dict access to var_access_benchmark.py (GH-11905)
by Stefan Behnel
· 6 years ago
5e33378
bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (GH-12530)
by Zackery Spytz
· 6 years ago
dd5417a
bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)
by Rémi Lapeyre
· 6 years ago
9dcc095
Fix line ending (GH-12531)
by Raymond Hettinger
· 6 years ago
62be338
bpo-36401: Have help() show readonly properties separately (GH-12517)
by Raymond Hettinger
· 6 years ago
113d735
bpo-30348: IDLE: Add test_autocomplete unittest (GH-2209)
by Louie Lu
· 6 years ago
13c1f72
bpo-31822: Document that urllib.parse.{Defrag,Split,Parse}Result are namedtuples (GH-4434)
by Lisa Roach
· 6 years ago
0fe4513
bpo-36405: IDLE - Restore __main__ and add tests (#12518)
by Terry Jan Reedy
· 6 years ago
6661c17
Replace "DOS box" with link to Windows FAQ. (GH-12390)
by Ned Deily
· 6 years ago
3d07c1e
bpo-36412: fix a possible crash in dictobject.c's new_dict() (GH-12519)
by Zackery Spytz
· 6 years ago
a7987e7
bpo-32217: Correct usage of ABI tags in freeze. (GH-4719)
by AraHaan
· 6 years ago
d3c72a2
bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473)
by Inada Naoki
· 6 years ago
d60f658
bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203)
by Cheryl Sabella
· 6 years ago
6d5ee97
bpo-36301: Add _PyRuntimeState.preconfig (GH-12506)
by Victor Stinner
· 6 years ago
2b75155
bpo-36405: Use dict unpacking in idlelib (#12507)
by Terry Jan Reedy
· 6 years ago
7a2e84c
bpo-33319: Clarify subprocess call docs. (GH-12508)
by Gregory P. Smith
· 6 years ago
7c822e5
Fix typo in doc for pprint.pp (GH-12500)
by Xavier GUIHOT
· 6 years ago
c141957
bpo-36396: Remove fgBg param of idlelib.config.GetHighlight() (GH-12491)
by Terry Jan Reedy
· 6 years ago
5086589
bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (GH-12358)
by Brett Cannon
· 6 years ago
dd7c4ce
bpo-35155: clarify protocol handler method naming (GH-10313)
by Denton Liu
· 6 years ago
96831c7
bpo-30670: Add pp function to the pprint module (GH-11769)
by Rémi Lapeyre
· 6 years ago
c5c6cda
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
by Inada Naoki
· 6 years ago
b0df45e
bpo-21269: Provide args and kwargs attributes on mock call objects GH11807
by Kumar Akshay
· 6 years ago
40b6907
Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489)
by Pablo Galindo
· 6 years ago
97f5de0
bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-10625)
by Zackery Spytz
· 6 years ago
93e8012
bpo-36398: Fix a possible crash in structseq_repr(). (GH-12492)
by Zackery Spytz
· 6 years ago
9a0000d
bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477)
by Pablo Galindo
· 6 years ago
aedc273
Fix registry key for Windows SDK detection (GH-12445)
by Isuru Fernando
· 6 years ago
8bba81f
bpo-35978: Correctly skips venv tests in venvs (GH-12220)
by Steve Dower
· 6 years ago
7ee88bf
bpo-36245: Avoid problems when building in a directory containing spaces. (GH-12241)
by Jess
· 6 years ago
14e3c44
Fix table formatting in itertools doc (GH-12228)
by Benedikt Werner
· 6 years ago
e680c3d
bpo-36268: Change default tar format to pax from GNU. (GH-12355)
by CAM Gerlach
· 6 years ago
ed5e29c
bpo-36385: Add ``elif`` sentence on to avoid multiple ``if`` (GH-12478)
by Emmanuel Arias
· 6 years ago
2afb598
bpo-36324: NormalDist() add more tests and update comments (GH-12476)
by Raymond Hettinger
· 6 years ago
aa3ecb8
bpo-36285: Fix integer overflow in the array module. (GH-12317)
by sth
· 6 years ago
c1e2c28
bpo-36312: Fix decoders for some code pages. (GH-12369)
by Serhiy Storchaka
· 6 years ago
cc60cdd9
bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469)
by Inada Naoki
· 6 years ago
d5f18a6
bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466)
by Inada Naoki
· 6 years ago
e9a1dcb
bpo-8677: use PY_SSIZE_T_CLEAN in socketmodule.c (GH-12467)
by Inada Naoki
· 6 years ago
c5a216e
bpo-8677: use PY_SSIZE_T_CLEAN in Modules/_gdbmodule.c (GH-12464)
by Inada Naoki
· 6 years ago
9b4a1b1
bpo-36374: Fix a possible null pointer dereference (GH-12449)
by Zackery Spytz
· 6 years ago
fa15376
bpo-36301: Add _PyPreCmdline internal API (GH-12458)
by Victor Stinner
· 6 years ago
abbdd1f
bpo-23984: Improve descriptor documentation (GH-1034)
by Shubham Aggarwal
· 6 years ago
4a1468e
bpo-36356: Fix _PyCoreConfig_Read() (GH-12454)
by Victor Stinner
· 6 years ago
f29084d
bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)
by Victor Stinner
· 6 years ago
0d765e3
bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430)
by Stéphane Wirtel
· 6 years ago
c70ab02
bpo-36365: Rewrite structseq_repr() using _PyUnicodeWriter (GH-12440)
by Victor Stinner
· 6 years ago
fd23cfa
bpo-35388: Fix _PyRuntime_Finalize() (GH-12443)
by Victor Stinner
· 6 years ago
fe13883
bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational approximation (GH-12448)
by Raymond Hettinger
· 6 years ago
52a594b
NormalDist.inv_cdf(): In-line constants because the variable names were not informative (GH-12446)
by Raymond Hettinger
· 6 years ago
fc96e54
bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441)
by Victor Stinner
· 6 years ago
cb90c89
bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442)
by Pablo Galindo
· 6 years ago
dcf6171
bpo-36236: Handle removed cwd at Python init (GH-12424)
by Victor Stinner
· 6 years ago
f5f336a
bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435)
by Victor Stinner
· 6 years ago
fecc4f2
bpo-36356: Release Unicode interned strings on Valgrind (#12431)
by Victor Stinner
· 6 years ago
a712679
bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432)
by Victor Stinner
· 6 years ago
29198ea
bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434)
by Inada Naoki
· 6 years ago
943395f
bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400)
by Stéphane Wirtel
· 6 years ago
e130a07
bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425)
by btharper
· 6 years ago
5f1e8b4
Add docstrings to the arithmetic methods in NormalDist() (GH-12426)
by Raymond Hettinger
· 6 years ago
714c60d
bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)
by Raymond Hettinger
· 6 years ago
faddaed
bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423)
by Victor Stinner
· 6 years ago
5f9cf23
bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)
by Victor Stinner
· 6 years ago
7b14f0c
bpo-36352: Add error handling to getpath.c (GH-12421)
by Victor Stinner
· 6 years ago
c183444
bpo-36301: Fix Py_Main() memory leaks (GH-12420)
by Victor Stinner
· 6 years ago
a10d426
bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333)
by stratakis
· 6 years ago
f7b57df
bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396)
by Raymond Hettinger
· 6 years ago
1be0d11
bpo-36352: Clarify fileutils.h documentation (GH-12406)
by Victor Stinner
· 6 years ago
72c7b37
bpo-36235: Enhance distutils test_customize_compiler() (GH-12403)
by Victor Stinner
· 6 years ago
9e06d2b
bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381)
by Stéphane Wirtel
· 6 years ago
0c9258a
bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398)
by Pablo Galindo
· 6 years ago
2ddc7f6
bpo-30040: optimize inserting into empty dict (GH-12307)
by Inada Naoki
· 6 years ago
09a9f17
bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385)
by Stéphane Wirtel
· 6 years ago
74ae50e
bpo-36307: Travis: upgrade to Xenial environment (GH-12356)
by CAM Gerlach
· 6 years ago
b4b97af
Fix typo in _PyObject_FastCallDict documentation (GH-12383)
by Rémi Lapeyre
· 6 years ago
23581c0
bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)
by Raymond Hettinger
· 6 years ago
6a16b18
bpo-36297: remove "unicode_internal" codec (GH-12342)
by Inada Naoki
· 6 years ago
Next »