import new p4a

This commit is contained in:
zeppi 2022-12-02 15:15:34 -05:00
commit a712121c3c
3036 changed files with 445600 additions and 3262 deletions
venv/lib/python3.8/site-packages/Cython/Includes/libcpp

View file

@ -0,0 +1,11 @@
cdef extern from "<stack>" namespace "std" nogil:
cdef cppclass stack[T]:
ctypedef T value_type
stack() except +
stack(stack&) except +
#stack(Container&)
bint empty()
void pop()
void push(T&)
size_t size()
T& top()