Skip to content

Commit

Permalink
Merge pull request #281 from ym/master
Browse files Browse the repository at this point in the history
Fix: Variables cannot be declared with 'cpdef'
  • Loading branch information
xzkostyan committed Jan 7, 2022
2 parents 0f5cab7 + 6eb9e08 commit e66fe4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clickhouse_driver/columns/largeint.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ from cpython.tuple cimport PyTuple_New, PyTuple_SET_ITEM

from .. import writer

cpdef object MAX_UINT64 = writer.MAX_UINT64
cpdef object MAX_INT64 = writer.MAX_INT64
cdef object MAX_UINT64 = writer.MAX_UINT64
cdef object MAX_INT64 = writer.MAX_INT64


def int128_from_quads(quad_items, unsigned long long n_items):
Expand Down

0 comments on commit e66fe4a

Please sign in to comment.