Serhiy Storchaka
Serhiy Storchaka
For example: https://bugs.python.org/issue2116#msg87822 > Committed in [r72662](https://hg.python.org/lookup/r72662), [r72670](https://hg.python.org/lookup/r72670). Thanks! https://github.com/python/cpython/issues/46370#issuecomment-1093409709 > Committed in r72662, r72670. Thanks!
When compare two results it would be helpful to output a probability of one result be faster then other. If `times1` and `times2` are sets of measured times, then the...
There was a subtle change in order of argument for CALL_FUNCTION_VAR and CALL_FUNCTION_VAR_KW in CPython 3.5. In earlier versions `*args` is passed after keyword arguments. In 3.5 it is passed...
It is not used in Python core, should not be used in user code, and will be removed in Python 3.9. `METH_NOARGS` functions should have type `PyCFunction` instead of `PyNoArgsFunction`...
It should be created before calling the setUp() method, but after checking for skipping a test. * Issue: gh-95736
https://bugs.python.org/issue33318
Some tests require specific locales. Often non-default non-English non-UTF-8 locales. If such locale is not available the test is skip or ran in the dry-run mode. It would be nice...
Since 3.10 `asyncio.get_event_loop()` emits a deprecation warning if used outside of the event loop (see #83710). It is a time to turn a warning into error and make `asyncio.get_event_loop()` an...
BPO | [31548](https://bugs.python.org/issue31548) --- | :--- Nosy | @pfmoore, @tjguk, @zware, @serhiy-storchaka, @zooba Files | [test_os.log](https://bugs.python.org/file47163/test_os.log "Uploaded as text/x-log at 2017-09-21.21:37:05 by @serhiy-storchaka") *Note: these values reflect the state of...
* Support for conversion specifiers o (octal) and X (uppercase hexadecimal). * Support for length modifiers j (intmax_t) and t (ptrdiff_t). * Length modifiers are now applied to all integer...