diff options
author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2016-09-17 09:43:10 +0300 |
---|---|---|
committer | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2016-09-17 09:43:10 +0300 |
commit | 7877ae712ffe6a76872393b152b01f04e0144154 (patch) | |
tree | 7535628f732357199d0538828f68e19b148f3d48 /setup.py | |
parent | 18ca113767fdf483ff0e820ac558e3b03334e22e (diff) | |
download | cherrypy-git-7877ae712ffe6a76872393b152b01f04e0144154.tar.gz |
Drop deprecated cherrypy._cpcompat_subprocess
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,8 +13,7 @@ class cherrypy_build_py(build_py): def build_module(self, module, module_file, package): python3 = sys.version_info >= (3,) if python3: - exclude_pattern = re.compile('ssl_pyopenssl|' - '_cpcompat_subprocess') + exclude_pattern = re.compile('ssl_pyopenssl') else: exclude_pattern = re.compile('xxx') if exclude_pattern.match(module): |