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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
92f222b9
Commit
92f222b9
authored
Dec 21, 2016
by
Robert Bradshaw
Committed by
GitHub
Dec 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1560 from ignatenkobrain/master
fix typo in Compiler/Options.py
parents
40d62647
3526e087
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+2
-2
No files found.
Cython/Compiler/Options.py
View file @
92f222b9
...
...
@@ -8,10 +8,10 @@ class ShouldBeFromDirective(object):
known_directives
=
[]
def
__init__
(
self
,
options_name
,
directive_name
=
None
,
dis
s
allow
=
False
):
def
__init__
(
self
,
options_name
,
directive_name
=
None
,
disallow
=
False
):
self
.
options_name
=
options_name
self
.
directive_name
=
directive_name
or
options_name
self
.
dis
sallow
=
dis
sallow
self
.
dis
allow
=
di
sallow
self
.
known_directives
.
append
(
self
)
def
__nonzero__
(
self
):
...
...
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