cpython
Here are 124 public repositories matching this topic...
-
Updated
May 15, 2021 - Python
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})";
}
Hi,
This is a really esoteric issue, but I was looking through the code and found this line: https://github.com/adafruit/circuitpython/blob/e6dc3e4686c74ad1828d07475194fc45e8f65ab0/ports/atmel-samd/common-hal/analogio/AnalogOut.c#L87
However, in the datasheet here: https://ww1.microchip.com/downloads/en/DeviceDoc/SAM_D21_DA1_Family_DataSheet_DS40001882F.pdf
Section 47.6.3 does not exist (
-
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
May 26, 2021 - Python
-
Updated
May 21, 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
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
Apr 29, 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
May 22, 2021 - Python
-
Updated
Jul 22, 2017 - C++
-
Updated
May 16, 2021 - 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."
The current documentation stems mostly from a time when Pure Python Mode wasn't even being thought of and aims to present the special
cdefsyntax that Cython uses. The Pure Python Syntax is only presented on the pure Python tutorial page.Today, more and more new users come from a Python background that uses type annotations. We shoul