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
Gwenaël Samain
cython
Commits
fb8a24cb
Commit
fb8a24cb
authored
Aug 21, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove Pyrex references in comments
parent
237050b4
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
17 additions
and
17 deletions
+17
-17
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+1
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+1
-1
Cython/Compiler/Errors.py
Cython/Compiler/Errors.py
+1
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-1
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+1
-1
Cython/Compiler/Naming.py
Cython/Compiler/Naming.py
+1
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+3
-3
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+1
-1
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+4
-4
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+1
-1
Cython/Compiler/TypeSlots.py
Cython/Compiler/TypeSlots.py
+2
-2
No files found.
Cython/Compiler/Builtin.py
View file @
fb8a24cb
#
#
Pyrex -
Builtin Definitions
# Builtin Definitions
#
from
Symtab
import
BuiltinScope
,
StructOrUnionScope
...
...
Cython/Compiler/Code.py
View file @
fb8a24cb
# cython: language_level = 3, py2_import=True
#
#
Pyrex -
Code output module
# Code output module
#
import
cython
...
...
Cython/Compiler/Errors.py
View file @
fb8a24cb
#
#
Pyrex -
Errors
# Errors
#
import
sys
...
...
Cython/Compiler/ExprNodes.py
View file @
fb8a24cb
#
# P
yrex - P
arse tree nodes for expressions
# Parse tree nodes for expressions
#
import
cython
...
...
Cython/Compiler/ModuleNode.py
View file @
fb8a24cb
#
#
Pyrex -
Module parse tree node
# Module parse tree node
#
import
cython
...
...
Cython/Compiler/Naming.py
View file @
fb8a24cb
#
#
Pyrex -
C naming conventions
# C naming conventions
#
#
# Prefixes for generating C names.
...
...
Cython/Compiler/Nodes.py
View file @
fb8a24cb
#
# P
yrex - P
arse tree nodes
# Parse tree nodes
#
import
cython
cython
.
declare
(
sys
=
object
,
os
=
object
,
time
=
object
,
copy
=
object
,
Builtin
=
object
,
error
=
object
,
warning
=
object
,
Naming
=
object
,
PyrexTypes
=
object
,
...
...
@@ -415,7 +415,7 @@ class CDeclaratorNode(Node):
class
CNameDeclaratorNode
(
CDeclaratorNode
):
# name string The
Pyrex
name being declared
# name string The
Cython
name being declared
# cname string or None C name, if specified
# default ExprNode or None the value assigned on declaration
...
...
Cython/Compiler/Parsing.py
View file @
fb8a24cb
# cython: auto_cpdef=True, infer_types=True, language_level=3, py2_import=True
#
# P
yrex P
arser
# Parser
#
# This should be done automatically
...
...
Cython/Compiler/PyrexTypes.py
View file @
fb8a24cb
#
#
Pyrex - T
ypes
#
Cython/Python language t
ypes
#
from
Code
import
UtilityCode
...
...
@@ -10,7 +10,7 @@ from Errors import error
class
BaseType
(
object
):
#
# Base class for all
Pyrex
types including pseudo-types.
# Base class for all
Cython
types including pseudo-types.
def
can_coerce_to_pyobject
(
self
,
env
):
return
False
...
...
@@ -35,7 +35,7 @@ class BaseType(object):
class
PyrexType
(
BaseType
):
#
# Base class for all
Pyrex types.
# Base class for all
Cython types
#
# is_pyobject boolean Is a Python object type
# is_extension_type boolean Is a Python extension type
...
...
@@ -72,7 +72,7 @@ class PyrexType(BaseType):
# 'DL_IMPORT', and will be added to the base type part of
# the declaration.
# * If pyrex = 1, this is for use in a 'cdef extern'
# statement of a
Pyrex
include file.
# statement of a
Cython
include file.
#
# assignable_from(src_type)
# Tests whether a variable of this type can be
...
...
Cython/Compiler/Symtab.py
View file @
fb8a24cb
...
...
@@ -1577,7 +1577,7 @@ class ClassScope(Scope):
# Abstract base class for namespace of
# Python class or extension type.
#
# class_name string Py
rex
name of the class
# class_name string Py
thon
name of the class
# scope_prefix string Additional prefix for names
# declared in the class
# doc string or None Doc string
...
...
Cython/Compiler/TypeSlots.py
View file @
fb8a24cb
#
#
Pyrex - Tables describing slots in the
type object
#
and associated know-how.
#
Tables describing slots in the CPython
type object
# and associated know-how.
#
import
Naming
...
...
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