Skip to content

Commit 262e291

Browse files
committed
Support new Cython
1 parent d2c5e55 commit 262e291

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_admesh.pyx

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ cdef class Stl(object):
2424
raise AdmeshError('stl_initialize')
2525
self._c_stl_file.stats.type = Stl.INMEMORY
2626

27-
property stats:
27+
@property
28+
def stats(self):
2829
"""The statistics about the STL model"""
29-
def __get__(self):
30-
return self._c_stl_file.stats
30+
return self._c_stl_file.stats
3131

3232
def __str__(self):
3333
header = str(self._c_stl_file.stats.header.decode('ascii'))

autogen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Autogen(build_ext, object):
2828
'put_little_float',
2929
]
3030
PYX_IGNORE = ['open', 'close', 'get_error', 'clear_error', 'repair',
31-
'reallocate']
31+
'reallocate', 'facet_stats']
3232

3333
PXD = 'c' + NAME + '.pxd'
3434
_PXD = '_' + PXD

0 commit comments

Comments
 (0)