We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f20f62b commit 14613f6Copy full SHA for 14613f6
setup.py
@@ -2,13 +2,13 @@
2
3
setup(
4
name='var_dump',
5
- version='1.1',
+ version='1.2',
6
packages=['var_dump'],
7
url='http://github.com/sha256/python-var-dump',
8
license='BSD',
9
author='Shamim Hasnath',
10
author_email='[email protected]',
11
- description='PHP like var_dump for python',
+ description='var_dump for python',
12
download_url='http://github.com/sha256/python-var-dump/tarball',
13
classifiers=[
14
'Development Status :: 5 - Production/Stable',
var_dump/_var_dump.py
@@ -3,7 +3,7 @@
try:
from enum import Enum
-except expression as identifier:
+except ImportError:
Enum = type(str)
@@ -18,7 +18,7 @@
18
__author__ = "Shamim Hasnath"
19
__copyright__ = "Copyright 2013, Shamim Hasnath"
20
__license__ = "BSD License"
21
-__version__ = "1.1.0"
+__version__ = "1.2.0"
22
23
TAB_SIZE = 4
24
0 commit comments