Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple changes; python 2 support, dictionary, mutator refactor #26

Merged
merged 15 commits into from Jan 19, 2020
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Fix dictionary typo.

A small typo in the word dictionary, fixed.
  • Loading branch information
gerph committed Jan 7, 2020
commit 3a6fac53f944bbfc7a6524b88a468bf2d653e203
@@ -5,7 +5,7 @@
import struct
import hashlib

from . import dictionnary
from . import dictionary


INTERESTING8 = [-128, -1, 0, 1, 16, 32, 64, 100, 127]
@@ -355,7 +355,7 @@ class Corpus(object):

def __init__(self, dirs=None, max_input_size=4096, mutators_filter=None, dict_path=None):
self._inputs = []
self._dict = dictionnary.Dictionary(dict_path)
self._dict = dictionary.Dictionary(dict_path)
self._max_input_size = max_input_size
self._dirs = dirs if dirs else []
for i, path in enumerate(dirs):
File renamed without changes.
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.