summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_cpointer_runme.py
blob: f0ec9906063268cf533008afb91c43c5262a8233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from li_cpointer import *


p = new_intp()

if intp_value(p) != 0:
    raise RuntimeError("not initialized")

intp_assign(p, 3)

if intp_value(p) != 3:
    raise RuntimeError

delete_intp(p)