cpython
Here are 115 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
Jan 23, 2021 - Python
github user @wildestpixel notes that the rp2040's quadrature decoder doesn't allow the pins to be swapped in order. If feasible, allow the pins to be specified in either order, and if they are in the swapped order then switch the counting direction.
-
Updated
Sep 7, 2020 - Python
-
Updated
Mar 22, 2021 - Python
-
Updated
Feb 10, 2021 - Python
-
Updated
Feb 5, 2021 - CMake
This could be done adding a new line in scikit-ci-yml.
The line could be
- twine check dist/*
-
Updated
Mar 13, 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
Sep 6, 2020 - Python
Create Logo
-
Updated
Jul 22, 2017 - C++
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
Jan 24, 2021 - Python
-
Updated
Feb 22, 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."