Skip to content

Commit 63a3a94

Browse files
committed
Follow up on cherrypy#1244 (see 93c8c2c1783d9ca2a34c93a433c31ca03abaffba)
1 parent 343c5ed commit 63a3a94

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,8 @@ def build_module(self, module, module_file, package):
2525
if python3:
2626
exclude_pattern = re.compile('wsgiserver2|ssl_pyopenssl|'
2727
'_cpcompat_subprocess')
28-
elif sys.version_info < (2, 7):
29-
exclude_pattern = re.compile('wsgiserver3')
3028
else:
31-
# no need to include _cpcompat_subprocess when
32-
# python already provides its own subprocess module
33-
exclude_pattern = re.compile('wsgiserver3|'
34-
'_cpcompat_subprocess')
29+
exclude_pattern = re.compile('wsgiserver3')
3530
if exclude_pattern.match(module):
3631
return # skip it
3732
return build_py.build_module(self, module, module_file, package)

0 commit comments

Comments
 (0)