Skip to content

Commit

Permalink
Merge pull request #120 from igorkramaric/fix-cpdef-to-cdef
Browse files Browse the repository at this point in the history
Fix cpdef to cdef
  • Loading branch information
igorkramaric authored Jul 18, 2023
2 parents 45e4f0d + ac08bfb commit d754993
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions daffodil/parser.pxd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cdef class Token:
cpdef public object content
cdef public object content

cdef class TimeStamp(Token):
cpdef public str raw_content
cpdef public bint uses_offset
cdef public str raw_content
cdef public bint uses_offset

cdef class GroupStart(Token): pass
cdef class GroupEnd(Token): pass
Expand All @@ -17,7 +17,7 @@ cdef class ArrayStart(Token): pass
cdef class ArrayEnd(Token): pass

cdef class _ArrayToken(Token):
cpdef public object raw_content
cdef public object raw_content

cdef class BaseDaffodilDelegate:
cdef mk_cmp(self, Token key, Token test, Token val)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='daffodil',
version='0.6.1',
version='0.6.2',
author='James Robert',
description='A Super-simple DSL for filtering datasets',
license='MIT',
Expand Down

0 comments on commit d754993

Please sign in to comment.