This file contains hidden or 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
# Released under MPL 2.0 per https://github.com/HypothesisWorks/hypothesis/blob/master/LICENSE.txt | |
# and CC-0: https://creativecommons.org/publicdomain/zero/1.0/legalcode | |
# | |
# Feel free to contact Paul Ganssle if you'd like this released under other terms. | |
from datetime import datetime, timedelta, timezone | |
from dateutil import tz | |
ZERO = timedelta(0) |
This file contains hidden or 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
# A clang-format style that approximates Python's PEP 7 | |
# Useful for IDE integration | |
BasedOnStyle: Google | |
AlwaysBreakAfterReturnType: All | |
AllowShortIfStatementsOnASingleLine: false | |
AlignAfterOpenBracket: Align | |
BreakBeforeBraces: Stroustrup | |
ColumnLimit: 79 | |
DerivePointerAlignment: false | |
IndentWidth: 4 |
OlderNewer