cpython
Here are 131 public repositories matching this topic...
-
Updated
Aug 13, 2021 - Python
Based on pythonnet/pythonnet#554
> #r C:\\Python\\Python35_64b\\lib\\site-packages\\Python.Runtime.DLL
> using Python.Runtime;
> dynamic np; using (Py.GIL()) { np = Py.Import("numpy");};
> using System.Collections.Generic;
> using System.Collections;
> dynamic a = np.array(new List<float> { 1, 2, 3 });
> dynamic b = np.array(new List<float> { 6, 5, 4 }, dtype:
This can reduce the amount of boilerplate required. Instead of introducing a macro such as QRIO_MODULE
dependent on CIRCUITPY_QRIO
and then adding an expansion of it in MICROPY_PORT_BUILTIN_MODULES_STRONG_LINKS
, one simply writes in the bindings __init__.c
file:
MP_REGISTER_MODULE(MP_QSTR_qrio, qrio_module, CIRCUITPY_QRIO);
where the first item is the module name as a qstr, th
-
Updated
Sep 7, 2020 - Python
-
Updated
Jul 30, 2021 - Python
-
Updated
Jul 12, 2021 - C
-
Updated
May 26, 2021 - CMake
This could be done adding a new line in scikit-ci-yml
.
The line could be
- twine check dist/*
-
Updated
Aug 14, 2021 - 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
Feb 8, 2021 - C++
-
Updated
Aug 2, 2021 - Python
-
Updated
Oct 29, 2017 - Rust
-
Updated
Aug 14, 2021 - Python
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
Jul 7, 2021 - Python
-
Updated
May 16, 2021 - Python
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
: