Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b8198c4

Browse files
author
Daniele Linguaglossa
committed
fixed python 2.6 type and import issues
1 parent cdb96c9 commit b8198c4

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

pyjfuzz/core/pjf_mutators.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def __init__(self, configuration):
9696
bool: self.boolean_mutator,
9797
int: self.int_mutator,
9898
float: self.float_mutator,
99+
long: self.int_mutator,
99100
type(None): self.null_mutator,
100101
}
101102

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def install_gramfuzz():
5757
if sys.version_info < (2, 7):
5858
# support for python 2.6
5959
requires.append('argparse')
60+
requires.append('unittest2')
6061

6162
setup(
6263
name="PyJFuzz",

0 commit comments

Comments
 (0)