Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase size of index, line, and column fields #310

Merged
merged 8 commits into from Dec 13, 2019
8 changes: 4 additions & 4 deletions ext/_yaml.pyx
Expand Up @@ -63,13 +63,13 @@ MappingNode = yaml.nodes.MappingNode

cdef class Mark:
cdef readonly object name
cdef readonly int index
cdef readonly int line
cdef readonly int column
cdef readonly unsigned long long index
cdef readonly unsigned long long line
cdef readonly unsigned int column
cdef readonly buffer
cdef readonly pointer

def __init__(self, object name, int index, int line, int column,
def __init__(self, object name, unsigned long long index, unsigned long long line, unsigned int column,
object buffer, object pointer):
self.name = name
self.index = index
Expand Down