diff options
| author | Giampaolo Rodola' <g.rodola@gmail.com> | 2013-12-11 13:27:04 -0800 |
|---|---|---|
| committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2013-12-11 13:27:04 -0800 |
| commit | 3c2eea19d6774b9dd94a61b86aea84f2a9ff8af4 (patch) | |
| tree | 148fc2f529e2bcf252f1d604e9effbf7f9723e57 /setup.py | |
| parent | e994e7e2eb19931d55061a02fc8d686abfbde196 (diff) | |
| download | psutil-3c2eea19d6774b9dd94a61b86aea84f2a9ff8af4.tar.gz | |
rename windows modules by removing the 'ms' prefix in py, c, and h files
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -53,13 +53,13 @@ if sys.platform.startswith("win32"): return '0x0%s' % ((maj * 100) + min) extensions = [Extension( - '_psutil_mswindows', + '_psutil_windows', sources=[ - 'psutil/_psutil_mswindows.c', + 'psutil/_psutil_windows.c', 'psutil/_psutil_common.c', - 'psutil/arch/mswindows/process_info.c', - 'psutil/arch/mswindows/process_handles.c', - 'psutil/arch/mswindows/security.c', + 'psutil/arch/windows/process_info.c', + 'psutil/arch/windows/process_handles.c', + 'psutil/arch/windows/security.c', ], define_macros=[ # be nice to mingw, see: |
