cpython
Here are 119 public repositories matching this topic...
Environment
- Pythonnet version: 2.3.0
- Python version: 2.7
- Operating System: Windows 10
Details
I have a C# class library which I use in Python. I have a Point class (a code snippet):
public Point(double x, double y)
{
this.x = x;
this.y = y;
}
public override string ToString()
{
return $"Point({x}, {y})";
}
-
Updated
Apr 25, 2021 - Python
As it is, with the Neo Trinkey specifically, the non-status NeoPixels remain lit up if they were lit up from code in code.py when you enter the REPL. The status LED changes to indicate that you have entered the REPL. So, for example, if you had all four LEDs turned red in your code, and then entered the REPL, three would remain red, and one would turn white. This confused me as I moved onto someth
-
Updated
Sep 7, 2020 - Python
Currently, metadata is read from Cargo.toml's [package] and [package.metadata.maturin]. Now with PEP 621, this should be moved to the standardized pyproject.toml [project] instead.
For the implementation, it should still be checked whether [package.metadata.maturin] exists and users should be told that this is deprecated and that they should
-
Updated
Apr 23, 2021 - Python
-
Updated
Feb 10, 2021 - Python
-
Updated
Mar 30, 2021 - CMake
This could be done adding a new line in scikit-ci-yml.
The line could be
- twine check dist/*
-
Updated
Apr 20, 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
Mar 4, 2021 - Python
-
Updated
Oct 29, 2017 - Rust
-
Updated
Mar 27, 2021 - Python
Create Logo
We currently identify a set of arguments (for caching purposes), passed in as *args and **kwargs, using the following k as the key to a cache dictionary:
from operator import itemgetter
k = (args, tuple(sorted(kwargs.items(), key=itemgetter(0))))(This functionality is only relevant for pure functions. Assume also that all relevant data is hashable.)
However, consid
-
Updated
Jul 22, 2017 - C++
-
Updated
Jan 24, 2021 - Python
-
Updated
Feb 22, 2021 - Python
-
Updated
Dec 17, 2020 - 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."