cpython
Here are 149 public repositories matching this topic...
-
Updated
Mar 14, 2022 - C
This would allow for loading data into the state machine using run() before the state machine is actually clocked. We can't do it now because write() blocks until the FIFO is empty.
When this is False, write() needs to ensure that the length of the data is less than or equal to the FIFO size because it won't be able to queue more data up later.
The maturin side of PyO3/setuptools-rust#112
Currently maturin has no , or do we want to directly add vendoring support to existing sdist command, it builds sdist along with binary wheels. Do we want a seperated sdist command and add vendoring support to thatbuild command?
-
Updated
Sep 7, 2020 - Python
-
Updated
Apr 6, 2022 - Python
-
Updated
Mar 29, 2022 - C
-
Updated
Mar 31, 2022 - CMake
This could be done adding a new line in scikit-ci-yml.
The line could be
- twine check dist/*
-
Updated
Feb 17, 2022 - Python
It doesn't make sense to have the copy-pasted verbose logging configuration in main.py, main_pingpong.py and main_pingpong_servicer.py, which has the effect equal to
logging.basicConfig(format="[%(asctime)s - %(name)s - %(levelname)s]: %(message)s", level=logging.WARNING)TLS
-
Updated
Jan 29, 2022 - C++
-
Updated
Feb 8, 2022 - Python
-
Updated
Mar 23, 2022 - Python
-
Updated
Mar 21, 2022 - Python
-
Updated
Oct 29, 2017 - Rust
Create Logo
Help wanted!
The interaction between unpythonic and the async stuff that was added in Python 3.5 is totally untested, because I haven't used, and I'm not even that familiar with, that part of Python myself.
Reading Brett Cannon's explanation, I surmise the async features are intended mainly for "microthreading" ty
-
Updated
Jan 26, 2022 - Python
The documentation could use more code examples of how to use the various features of mcpyrate. Each item should include the actual code example, an explanation of what is it for and what it does, and if applicable, the output printed by the example.
Particularly, the mcpyrate.debug.step_expansion macro would be nice to showcase in a more detailed manner.
But basically anything in the pub
Improve this page
Add a description, image, and links to the cpython topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cpython topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Many static type checkers have issues finding Cython's stubs.
Here is from running mypy on my current project:
The same issue can be seen when using
import Cython as cython: