File tree 1 file changed +0
-14
lines changed 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -117,25 +117,13 @@ class uvloop_build_ext(build_ext):
117
117
]
118
118
119
119
def initialize_options (self ):
120
- # initialize_options() may be called multiple times on the
121
- # same command object, so make sure not to override previously
122
- # set options.
123
- if getattr (self , '_initialized' , False ):
124
- return
125
-
126
120
super ().initialize_options ()
127
121
self .use_system_libuv = False
128
122
self .cython_always = False
129
123
self .cython_annotate = None
130
124
self .cython_directives = None
131
125
132
126
def finalize_options (self ):
133
- # finalize_options() may be called multiple times on the
134
- # same command object, so make sure not to override previously
135
- # set options.
136
- if getattr (self , '_initialized' , False ):
137
- return
138
-
139
127
need_cythonize = self .cython_always
140
128
cfiles = {}
141
129
@@ -195,8 +183,6 @@ def finalize_options(self):
195
183
196
184
super ().finalize_options ()
197
185
198
- self ._initialized = True
199
-
200
186
def build_libuv (self ):
201
187
env = _libuv_build_env ()
202
188
You can’t perform that action at this time.
0 commit comments