Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
ecd248ed
Commit
ecd248ed
authored
Nov 11, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more bootstrap tweaks
parent
99327e65
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
7 deletions
+15
-7
Cython/Compiler/Lexicon.py
Cython/Compiler/Lexicon.py
+2
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+2
-1
Cython/Compiler/Scanning.py
Cython/Compiler/Scanning.py
+7
-3
Cython/Plex/Scanners.pxd
Cython/Plex/Scanners.pxd
+4
-2
No files found.
Cython/Compiler/Lexicon.py
View file @
ecd248ed
...
...
@@ -7,6 +7,7 @@
raw_prefixes
=
"rR"
string_prefixes
=
"cCuUbB"
IDENT
=
'IDENT'
def
make_lexicon
():
from
Cython.Plex
import
\
...
...
@@ -82,7 +83,7 @@ def make_lexicon():
comment
=
Str
(
"#"
)
+
Rep
(
AnyBut
(
"
\
n
"
))
return
Lexicon
([
(
name
,
'IDENT'
),
(
name
,
IDENT
),
(
intliteral
,
'INT'
),
(
fltconst
,
'FLOAT'
),
(
imagconst
,
'IMAG'
),
...
...
Cython/Compiler/Nodes.py
View file @
ecd248ed
...
...
@@ -756,6 +756,7 @@ class CVarDefNode(StatNode):
entry
=
dest_scope
.
declare_cfunction
(
name
,
type
,
declarator
.
pos
,
cname
=
cname
,
visibility
=
self
.
visibility
,
in_pxd
=
self
.
in_pxd
,
api
=
self
.
api
)
if
entry
is
not
None
:
entry
.
pxd_locals
=
self
.
pxd_locals
else
:
if
self
.
in_pxd
and
self
.
visibility
!=
'extern'
:
...
...
Cython/Compiler/Scanning.py
View file @
ecd248ed
...
...
@@ -11,11 +11,14 @@ import stat
import
sys
from
time
import
time
import
cython
cython
.
declare
(
EncodedString
=
object
,
string_prefixes
=
object
,
raw_prefixes
=
object
,
IDENT
=
object
)
from
Cython
import
Plex
,
Utils
from
Cython.Plex.Scanners
import
Scanner
from
Cython.Plex.Errors
import
UnrecognizedInput
from
Errors
import
CompileError
,
error
from
Lexicon
import
string_prefixes
,
raw_prefixes
,
make_lexicon
from
Lexicon
import
string_prefixes
,
raw_prefixes
,
make_lexicon
,
IDENT
from
StringEncoding
import
EncodedString
...
...
@@ -168,6 +171,7 @@ def build_resword_dict():
d
[
word
]
=
1
return
d
cython
.
declare
(
resword_dict
=
object
)
resword_dict
=
build_resword_dict
()
#------------------------------------------------------------------
...
...
@@ -407,7 +411,7 @@ class PyrexScanner(Scanner):
sy
,
systring
=
self
.
read
()
except
UnrecognizedInput
:
self
.
error
(
"Unrecognized character"
)
if
sy
==
'IDENT'
:
if
sy
==
IDENT
:
if
systring
in
resword_dict
:
sy
=
systring
else
:
...
...
@@ -447,7 +451,7 @@ class PyrexScanner(Scanner):
self
.
expected
(
what
,
message
)
def
expect_keyword
(
self
,
what
,
message
=
None
):
if
self
.
sy
==
'IDENT'
and
self
.
systring
==
what
:
if
self
.
sy
==
IDENT
and
self
.
systring
==
what
:
self
.
next
()
else
:
self
.
expected
(
what
,
message
)
...
...
Cython/Plex/Scanners.pxd
View file @
ecd248ed
import
cython
cdef
class
Scanner
:
cdef
public
lexicon
cdef
public
stream
cdef
public
name
...
...
@@ -21,11 +22,12 @@ cdef class Scanner:
cdef
public
cur_char
cdef
public
input_state
cdef
public
level
# int?
cdef
public
level
cpdef
next_char
(
self
):
cdef
:
long
input_state
cpdef
read
(
self
)
cpdef
run_machine_inlined
(
self
):
cdef
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment