File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ Bug tracker at https://github.com/giampaolo/psutil/issues
6
6
**Bug fixes **
7
7
8
8
- #632: [Linux] better error message if cannot parse process UNIX connections.
9
+ - #635: [UNIX] crash on module import if 'enum' package is installed on python
10
+ < 3.4.
9
11
10
12
11
13
3.0.0 - 2015-06-13
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ install-dev-deps:
52
52
mock \
53
53
nose \
54
54
pep8 \
55
+ pyflakes \
55
56
sphinx \
56
57
sphinx-pypi-upload \
57
58
unittest2 \
@@ -80,7 +81,7 @@ test-memleaks: install
80
81
test-by-name : install
81
82
@$(PYTHON ) -m nose test/test_psutil.py --nocapture -v -m $(filter-out $@ ,$(MAKECMDGOALS ) )
82
83
83
- # same as above but for test_memory_leaks.py script
84
+ # Same as above but for test_memory_leaks.py script.
84
85
test-memleaks-by-name : install
85
86
@$(PYTHON ) -m nose test/test_memory_leaks.py --nocapture -v -m $(filter-out $@ ,$(MAKECMDGOALS ) )
86
87
@@ -92,16 +93,13 @@ coverage: install
92
93
$(PYTHON ) -m coverage html $(COVERAGE_OPTS )
93
94
$(PYTHON ) -m webbrowser -t htmlcov/index.html
94
95
95
- # requires "pip install pep8"
96
96
pep8 :
97
97
@git ls-files | grep \\ .py$ | xargs $(PYTHON ) -m pep8
98
98
99
- # requires "pip install pyflakes"
100
99
pyflakes :
101
100
@export PYFLAKES_NODOCTEST=1 && \
102
101
git ls-files | grep \\ .py$ | xargs $(PYTHON ) -m pyflakes
103
102
104
- # requires "pip install flake8"
105
103
flake8 :
106
104
@git ls-files | grep \\ .py$ | xargs $(PYTHON ) -m flake8
107
105
Original file line number Diff line number Diff line change 12
12
import os
13
13
import socket
14
14
import stat
15
+ import sys
16
+ from collections import namedtuple
17
+ from socket import AF_INET , SOCK_STREAM , SOCK_DGRAM
15
18
try :
16
19
import threading
17
20
except ImportError :
18
21
import dummy_threading as threading
19
- try :
20
- import enum # py >= 3.4
21
- except ImportError :
22
+
23
+ if sys .version_info >= (3 , 4 ):
24
+ import enum
25
+ else :
22
26
enum = None
23
27
24
- from collections import namedtuple
25
- from socket import AF_INET , SOCK_STREAM , SOCK_DGRAM
26
28
27
29
# --- constants
28
30
You can’t perform that action at this time.
0 commit comments