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
*
bpo-34523: Fix config_init_fs_encoding() (GH-8991)
Victor Stinner
2018-08-29
1
-1/+1
*
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
Victor Stinner
2018-08-29
12
-100/+296
*
bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881)
Victor Stinner
2018-08-29
6
-135/+265
*
bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988)
Victor Stinner
2018-08-29
3
-19/+13
*
bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986)
Victor Stinner
2018-08-29
3
-18/+40
*
Improve commutativity of math.hypot() and math.dist() (GH-8984)
Raymond Hettinger
2018-08-29
1
-13/+19
*
bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982)
Victor Stinner
2018-08-28
4
-97/+111
*
bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979)
Victor Stinner
2018-08-28
3
-13/+19
*
bpo-34485: Enhance init_sys_streams() (GH-8978)
Victor Stinner
2018-08-28
8
-43/+91
*
bpo-34403: On HP-UX, force ASCII for C locale (GH-8969)
Victor Stinner
2018-08-28
5
-52/+105
*
bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972)
Victor Stinner
2018-08-28
5
-11/+35
*
bpo-21145: Add cached_property decorator in functools (#6982)
Carl Meyer
2018-08-28
4
-0/+256
*
bpo-33635: Handling Bad file descriptor in Path.is_file and related. (GH-8542)
Przemysław Spodymek
2018-08-27
3
-10/+48
*
bpo-34347: Fix test_utf8_mode.test_cmd_line for AIX (GH-8923)
Michael Felt
2018-08-27
2
-0/+3
*
bpo-34434: Update doc for bool(), float() and int() arguments (GH-8834)
Louis Sautier
2018-08-27
1
-1/+9
*
bpo-26544: Get rid of dependence from distutils in platform. (GH-8356)
Serhiy Storchaka
2018-08-27
1
-1/+30
*
bpo-34171: Fix test_trace. (GH-8940)
Serhiy Storchaka
2018-08-27
1
-3/+6
*
bpo-32968: Make modulo and floor division involving Fraction and float consis...
Elias Zamaria
2018-08-27
4
-12/+13
*
Fast path for exact floats in math.hypot() and math.dist() (GH-8949)
Raymond Hettinger
2018-08-27
1
-9/+21
*
Remove AIX workaround test_subprocess (GH-8939)
Michael Felt
2018-08-26
2
-8/+3
*
bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934)
Alexey Izbyshev
2018-08-26
1
-0/+1
*
closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)
Alexey Izbyshev
2018-08-25
1
-1/+1
*
closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferen...
Alexey Izbyshev
2018-08-25
1
-4/+9
*
closes bpo-34502: Remove a note about utf8_mode from sys.exit() docs. (GH-8928)
Alexey Izbyshev
2018-08-25
1
-3/+0
*
Remove unneeded PyErr_Clear() in _winapi_SetNamedPipeHandleState_impl() (GH-8...
Zackery Spytz
2018-08-25
1
-2/+0
*
Fix markup in stdtypes documentation (GH-8905)
Andrés Delfino
2018-08-25
1
-5/+5
*
bpo-34395: Don't free allocated memory on realloc fail in load_mark() in _pic...
Sergey Fedoseev
2018-08-25
1
-15/+5
*
Fix upsizing of marks stack in pickle module. (GH-8860)
Sergey Fedoseev
2018-08-25
2
-4/+4
*
bpo-34171: Prevent creating Lib/trace.cover when run the trace module. (GH-8841)
Serhiy Storchaka
2018-08-25
3
-10/+10
*
closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_o...
Alexey Izbyshev
2018-08-25
1
-0/+3
*
Fixed typo with asynccontextmanager code example (GH-8845)
Alexander Vasin
2018-08-25
1
-1/+1
*
bpo-34426: fix typo (__lltrace__ -> __ltrace__) (GH-8822)
Danish Prakash
2018-08-25
1
-1/+1
*
bpo-13312: Avoid int underflow in time year. (GH-8912)
Gregory P. Smith
2018-08-25
3
-6/+13
*
bpo-34492: Python/coreconfig.c: Fix _Py_wstrlist_copy() (GH-8910)
Alexey Izbyshev
2018-08-24
1
-1/+4
*
bpo-34448: Improve output of usable wchar_t check (GH-8846)
Michael Osipov
2018-08-24
2
-7/+9
*
closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_...
Alexey Izbyshev
2018-08-24
1
-1/+4
*
bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8...
Vladimir Matveev
2018-08-24
4
-3/+26
*
Fix typo in the dataclasses's doc (GH-8896)
Daniel Dương
2018-08-24
1
-1/+1
*
closes bpo-34468: Objects/rangeobject.c: Fix an always-false condition in ran...
Alexey Izbyshev
2018-08-24
1
-4/+4
*
closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum...
Alexey Izbyshev
2018-08-24
1
-0/+5
*
closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init()...
Alexey Izbyshev
2018-08-24
1
-0/+3
*
Fix doc for `add_subparsers` arguments (GH-8884)
Anthony Sottile
2018-08-24
1
-1/+1
*
Fix typo in asyncio.BoundedSemaphore docs (GH-8882)
Jelle Zijlstra
2018-08-24
1
-1/+1
*
bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...
Paul Ganssle
2018-08-23
3
-10/+84
*
Make it more clear that setUpClass runs before each class, not "class run" (G...
Ville Skyttä
2018-08-23
1
-1/+1
*
bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786)
Michael Osipov
2018-08-23
6
-4/+27
*
bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868)
Victor Stinner
2018-08-23
1
-0/+6
*
bpo-34436: Fix check that disables overallocation for the last fmt specifier ...
Alexey Izbyshev
2018-08-23
1
-3/+3
*
Remove superseded line from argparse.HelpFormatter() (GH-8839)
Grant Jenks
2018-08-22
1
-1/+0
*
bpo-34462: Add missing NULL check to _copy_raw_string() (GH-8863)
Alexey Izbyshev
2018-08-22
1
-1/+1
[next]