Skip to content

Commit

Permalink
TEMPORARY COMMIT add some print debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Mar 25, 2020
1 parent 7ab49c1 commit f31c3c8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions examples/rustapi_module/tests/test_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,19 @@ def tzname(self, dt):
PYPY = platform.python_implementation() == "PyPy"
HAS_FOLD = getattr(pdt.datetime, "fold", False)

print("MAX_SECONDS", MAX_SECONDS)
print("MIN_SECONDS", MIN_SECONDS)
print("MAX_DAYS", MAX_DAYS)
print("MIN_DAYS", MIN_DAYS)
print("MAX_MICROSECONDS", MAX_MICROSECONDS)
print("MIN_MICROSECONDS", MIN_MICROSECONDS)
print("_pointer_size", _pointer_size)
print("IS_32_BIT", IS_32_BIT)
print("IS_WINDOWS", IS_WINDOWS)
print("MIN_DATETIME", MIN_DATETIME)
print("MAX_DATETIME", MAX_DATETIME)
print("PYPY", PYPY)
print("HAS_FOLD", HAS_FOLD)

xfail_date_bounds = pytest.mark.xfail(
sys.version_info < (3, 6),
Expand Down

0 comments on commit f31c3c8

Please sign in to comment.