We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab49c1 commit f31c3c8Copy full SHA for f31c3c8
examples/rustapi_module/tests/test_datetime.py
@@ -72,6 +72,19 @@ def tzname(self, dt):
72
PYPY = platform.python_implementation() == "PyPy"
73
HAS_FOLD = getattr(pdt.datetime, "fold", False)
74
75
+print("MAX_SECONDS", MAX_SECONDS)
76
+print("MIN_SECONDS", MIN_SECONDS)
77
+print("MAX_DAYS", MAX_DAYS)
78
+print("MIN_DAYS", MIN_DAYS)
79
+print("MAX_MICROSECONDS", MAX_MICROSECONDS)
80
+print("MIN_MICROSECONDS", MIN_MICROSECONDS)
81
+print("_pointer_size", _pointer_size)
82
+print("IS_32_BIT", IS_32_BIT)
83
+print("IS_WINDOWS", IS_WINDOWS)
84
+print("MIN_DATETIME", MIN_DATETIME)
85
+print("MAX_DATETIME", MAX_DATETIME)
86
+print("PYPY", PYPY)
87
+print("HAS_FOLD", HAS_FOLD)
88
89
xfail_date_bounds = pytest.mark.xfail(
90
sys.version_info < (3, 6),
0 commit comments