diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-06-15 08:04:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-06-15 08:04:45 +0200 |
commit | 729f6f5012cbad58c57baa43cde951537e672794 (patch) | |
tree | 0be90c816612c7d644b6aa5cf0a7ffb33f75ce5d | |
parent | Avoid a race on _PyRuntime.types.managed_static.types[i].interp_count. (diff) | |
download | cpython-gentoo-3.13.0b2_p3.tar.gz cpython-gentoo-3.13.0b2_p3.tar.bz2 cpython-gentoo-3.13.0b2_p3.zip |
Add missing textwrap import to datetimetestergentoo-3.13.0b2_p3
It was added by another change in 3.13 branch.
-rw-r--r-- | Lib/test/datetimetester.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py index 218c8cdeff9..cbfc06bb3b0 100644 --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -13,6 +13,7 @@ import random import re import struct import sys +import textwrap import unittest import warnings |