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 VERSION IS OUTDATED | |
# see .inplace(), .cloning(), ._clone() and .clone() methods of QuerySetMixin | |
# in https://github.com/Suor/django-cacheops/blob/master/cacheops/query.py | |
from django.conf import settings | |
from django.db.models import Model, Manager | |
MUTATING_QUERYSETS = getattr(settings, 'MUTATING_QUERYSETS', False) | |
class QuerySetMixin(object): | |
def __init__(self, *args, **kwargs): |
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
#!/bin/sh | |
PRINTS=`git diff --cached -U0 | grep ^+ | grep -E '\bprint(\b|_)'` | |
if [ -n "$PRINTS" ]; then | |
echo "ERROR: you are going to commit prints:\n" | |
git diff --cached -U0 -G'\bprint(\b|_)' | |
exit 1 | |
fi |
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
import spacy | |
from spacy.matcher import Matcher | |
Active = "Harry ate six shrimp at dinner.\ | |
Beautiful giraffes roam the savannah.\ | |
Sue changed the flat tire.\ | |
We are going to watch a movie tonight.\ | |
I ran the obstacle course in record time.\ | |
The crew paved the entire stretch of highway.\ | |
Mom read the novel in one day.\ |