Skip to content

Commit b2a447d

Browse files
committed
fix #635: [UNIX] crash on module import if 'enum' package is installed on python < 3.4
1 parent 2006f27 commit b2a447d

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

HISTORY.rst

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Bug tracker at https://github.com/giampaolo/psutil/issues
66
**Bug fixes**
77

88
- #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.
911

1012

1113
3.0.0 - 2015-06-13

Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ install-dev-deps:
5252
mock \
5353
nose \
5454
pep8 \
55+
pyflakes \
5556
sphinx \
5657
sphinx-pypi-upload \
5758
unittest2 \
@@ -80,7 +81,7 @@ test-memleaks: install
8081
test-by-name: install
8182
@$(PYTHON) -m nose test/test_psutil.py --nocapture -v -m $(filter-out $@,$(MAKECMDGOALS))
8283

83-
# same as above but for test_memory_leaks.py script
84+
# Same as above but for test_memory_leaks.py script.
8485
test-memleaks-by-name: install
8586
@$(PYTHON) -m nose test/test_memory_leaks.py --nocapture -v -m $(filter-out $@,$(MAKECMDGOALS))
8687

@@ -92,16 +93,13 @@ coverage: install
9293
$(PYTHON) -m coverage html $(COVERAGE_OPTS)
9394
$(PYTHON) -m webbrowser -t htmlcov/index.html
9495

95-
# requires "pip install pep8"
9696
pep8:
9797
@git ls-files | grep \\.py$ | xargs $(PYTHON) -m pep8
9898

99-
# requires "pip install pyflakes"
10099
pyflakes:
101100
@export PYFLAKES_NODOCTEST=1 && \
102101
git ls-files | grep \\.py$ | xargs $(PYTHON) -m pyflakes
103102

104-
# requires "pip install flake8"
105103
flake8:
106104
@git ls-files | grep \\.py$ | xargs $(PYTHON) -m flake8
107105

psutil/_common.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
import os
1313
import socket
1414
import stat
15+
import sys
16+
from collections import namedtuple
17+
from socket import AF_INET, SOCK_STREAM, SOCK_DGRAM
1518
try:
1619
import threading
1720
except ImportError:
1821
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:
2226
enum = None
2327

24-
from collections import namedtuple
25-
from socket import AF_INET, SOCK_STREAM, SOCK_DGRAM
2628

2729
# --- constants
2830

0 commit comments

Comments
 (0)