We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548afd3 commit 2a79d02Copy full SHA for 2a79d02
uuid.pyx
@@ -100,7 +100,6 @@ cdef pg_uuid_from_buf(const char *buf):
100
101
@cython.final
102
@cython.no_gc_clear
103
-@cython.freelist(128)
104
cdef class UUID(__UUIDReplaceMe):
105
106
cdef:
@@ -109,6 +108,10 @@ cdef class UUID(__UUIDReplaceMe):
109
108
object _hash
110
object __weakref__
111
+ def __cinit__(self):
112
+ self._int = None
113
+ self._hash = None
114
+
115
def __init__(self, inp):
116
117
char *buf
0 commit comments