forked from python/typed_ast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request python#12 from darkk/master
Fix endless loop in lz4.frame.decompress being fed with truncated frame
- Loading branch information
Showing
4 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: build test clean pre-commit | ||
build: | ||
python$(PY) setup.py build | ||
test: | ||
python$(PY) setup.py test | ||
clean: | ||
rm -rf build | ||
find . '(' -name '*.pyc' -o -name '*.so' ')' -delete | ||
pre-commit: | ||
$(MAKE) clean && $(MAKE) PY=2 build && $(MAKE) PY=2 test | ||
$(MAKE) clean && $(MAKE) PY=3 build && $(MAKE) PY=3 test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters