-
Notifications
You must be signed in to change notification settings - Fork 600
Expand file tree
/
Copy path__init__.codon
More file actions
53 lines (44 loc) · 1.63 KB
/
__init__.codon
File metadata and controls
53 lines (44 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (C) 2022-2025 Exaloop Inc. <https://exaloop.io>
# Core library
# from internal.core import * # done automatically by compiler
from internal.attributes import *
import internal.static as static
from internal.static import print as __print__
from internal.types.ptr import *
from internal.types.str import *
from internal.types.int import *
from internal.types.bool import *
from internal.types.array import *
from internal.types.error import *
from internal.types.intn import *
from internal.types.float import *
from internal.types.byte import *
from internal.types.generator import *
from internal.types.optional import *
import internal.c_stubs as _C
from internal.format import *
from internal.internal import *
from internal.types.slice import *
from internal.types.range import *
from internal.types.complex import *
__argv__ = Array[str](0)
from internal.types.strbuf import strbuf as _strbuf
from internal.types.collections.list import *
from internal.types.collections.set import *
from internal.types.collections.dict import *
from internal.types.collections.tuple import *
from internal.builtin import *
from internal.builtin import _jit_display
from internal.str import *
from internal.sort import sorted
from openmp import Ident as __OMPIdent, for_par, for_par as par
from internal.file import File, gzFile, open, gzopen, pipe
from internal.gpu import _gpu_loop_outline_template
from pickle import pickle, unpickle
from internal.dlopen import dlsym as _dlsym
import internal.python
from internal.python import PyError
if __py_numerics__:
import internal.pynumerics
if __py_extension__:
internal.python.ensure_initialized()