File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -253,12 +253,9 @@ def init_code(cons):
253253
254254 constructors = [x for x in self .public_members if isinstance (x , Constructor )]
255255 self .constructors = constructors [:]
256- # don't export the copy constructor if the class is abstract
256+ # don't export constructors if the class is abstract
257257 if self .class_ .abstract :
258- for cons in constructors :
259- if cons .IsCopy ():
260- constructors .remove (cons )
261- break
258+ constructors = []
262259 if not constructors :
263260 # declare no_init
264261 self .Add ('constructor' , py_ns + 'no_init' )
Original file line number Diff line number Diff line change 5151import time
5252import declarations
5353
54- __version__ = '0.9.28 '
54+ __version__ = '0.9.29 '
5555
5656def RecursiveIncludes (include ):
5757 'Return a list containg the include dir and all its subdirectories'
You can’t perform that action at this time.
0 commit comments