- 21 May, 2019 1 kayıt (commit)
-
-
Batuhan Taşkaya yazdı
-
- 14 May, 2019 3 kayıt (commit)
-
-
Batuhan Taşkaya yazdı
-
wim glenn yazdı
-
Jens Troeger yazdı
-
- 13 May, 2019 22 kayıt (commit)
-
-
Anders Hovmöller yazdı
* Update timeit.rst
-
Matthias Bussonnier yazdı
-
Pierre Glaser yazdı
-
Brad yazdı
* Docs: Add bz2 usage examples - Adds an "Examples of usage" section inspired by the one found in the gzip docs - Corrects the descriptions for ``compresslevel`` and ``data``: - ``compresslevel`` must be an `int`, not any number. For instance, passing a float will raise ``TypeError`` - Notes that `data` must be bytes-like
-
Antoine Pitrou yazdı
-
Pierre Glaser yazdı
Followup to bpo-36867.
-
Victor Stinner yazdı
"python3 -m test -jN ..." now continues the execution of next tests when a worker process crash (CHILD_ERROR state). Previously, the test suite stopped immediately. Use --failfast to stop at the first error. Moreover, --forever now also implies --failfast.
-
Guido van Rossum yazdı
-
Victor Stinner yazdı
Move _PyImportZip_Init() to the internal C API and add an 'interp' parameter.
-
Xtreak yazdı
-
Victor Stinner yazdı
-
-
Guido van Rossum yazdı
-
Utkarsh Gupta yazdı
-
Kexuan Sun yazdı
-
Victor Stinner yazdı
Remove the PyEval_ReInitThreads() function from the Python C API. It should not be called explicitly: use PyOS_AfterFork_Child() instead. Rename PyEval_ReInitThreads() to _PyEval_ReInitThreads() and add a 'runtime' parameter.
-
Victor Stinner yazdı
Remove cp65001 from the codecs table, list it as an alias of utf_8 and add a versionchanged markup.
-
Zackery Spytz yazdı
Co-Authored-By:
Filip Gruszczyński <gruszczy@gmail.com> Co-Authored-By:
Michele Orrù <maker@tumbolandia.net>
-
Edison A yazdı
-
Gordon P. Hemsley yazdı
-
Johnny Gérard yazdı
-
Matthias Bussonnier yazdı
`time.clock()` was deprecated in 3.3, and marked for removal removal in 3.8; this thus remove it from the time module.
-
- 12 May, 2019 4 kayıt (commit)
-
-
Pablo Galindo yazdı
-
Jake Tesler yazdı
-
Gordon P. Hemsley yazdı
The combined Python and C coverage test runs now exceed Travis's 50-minute time limit. Splitting them into separate runs gives more leeway. Also, adding branch coverage to Python testing and ensure that coverage is reported even if tests fail. (The primary builds are for tracking test failures.)
-
Pablo Galindo yazdı
-
- 11 May, 2019 7 kayıt (commit)
-
-
Pablo Galindo yazdı
-
Sanyam Khurana yazdı
-
Michael J. Sullivan yazdı
In the parser, when using the type_comments=True option, recognize a TYPE_IGNORE as anything containing `# type: ignore` followed by a non-alphanumeric character. This is to allow ignores such as `# type: ignore[E1000]`.
-
Xi Ruoyao yazdı
-
-
Aurelio Jargas yazdı
-
Victor Stinner yazdı
Android still links to libpython.
-
- 10 May, 2019 3 kayıt (commit)
-
-
Pablo Galindo yazdı
-
Victor Stinner yazdı
Add "struct _ceval_runtime_state *ceval = &_PyRuntime.ceval;" local variables to function to better highlight the dependency on the global variable _PyRuntime and to point directly to _PyRuntime.ceval field rather than on the larger _PyRuntime. Changes: * Add _PyRuntimeState_GetThreadState(runtime) macro. * Add _PyEval_AddPendingCall(ceval, ...) and _PyThreadState_Swap(gilstate, ...) functions. * _PyThreadState_GET() macro now calls _PyRuntimeState_GetThreadState() using &_PyRuntime. * Add 'ceval' parameter to COMPUTE_EVAL_BREAKER(), SIGNAL_PENDING_SIGNALS(), _PyEval_SignalAsyncExc(), _PyEval_SignalReceived() and _PyEval_FiniThreads() macros and functions. * Add 'tstate' parameter to call_function(), do_call_core() and do_raise(). * Add 'runtime' parameter to _Py_CURRENTLY_FINALIZING(), _Py_FinishPendingCalls() and _PyThreadState_DeleteExcept() macros and functions. * Declare 'runtime', 'tstate', 'ceval' and 'eval_breaker' variables as constant.
-
Pierre Glaser yazdı
The multiprocessing.resource_tracker replaces the multiprocessing.semaphore_tracker module. Other than semaphores, resource_tracker also tracks shared_memory segments. Patch by Pierre Glaser.
-