The Wayback Machine - https://web.archive.org/web/20220605142556/https://github.com/topics/cpython
Skip to content
#

cpython

Here are 154 public repositories matching this topic...

Bluenix2
Bluenix2 commented Aug 7, 2021

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:

error: Skipping analyzing "cython": found module but no type hints or library stubs

The same issue can be seen when using import Cython as cython:

error: Skipping analyzing "Cython": found module but 
circuitpython
rsbohn
rsbohn commented May 22, 2022

CircuitPython version

Adafruit CircuitPython 7.3.0-rc.2 on 2022-05-21; Raspberry Pi Pico with rp2040

Code/REPL

b = (0xFEED).to_bytes(2,"little")
# next line is not correct code
x = int.from_bytes(b, 2, "little")
print(x==0xFEED)

Behavior

C Python raises a TypeError if too many arguments:

int.from_bytes(bytes([0xFE,0xED]), 2, "big")
Tracebac

Technologicat
Technologicat commented Jul 24, 2019

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

bug enhancement help wanted good first issue
Technologicat
Technologicat commented Nov 27, 2020

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

documentation good first issue

Improve this page

Add a description, image, and links to the cpython topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cpython topic, visit your repo's landing page and select "manage topics."

Learn more