Skip to content

Commit 780e969

Browse files
gh-143672: Finish conversion of the struct module to Argument Clinic (GH-143857)
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
1 parent 66680f1 commit 780e969

File tree

3 files changed

+349
-193
lines changed

3 files changed

+349
-193
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6266,6 +6266,10 @@ def test_stat_module_has_signatures(self):
62666266
import stat
62676267
self._test_module_has_signatures(stat)
62686268

6269+
def test_struct_module_has_signatures(self):
6270+
import struct
6271+
self._test_module_has_signatures(struct)
6272+
62696273
def test_string_module_has_signatures(self):
62706274
import string
62716275
self._test_module_has_signatures(string)

0 commit comments

Comments
 (0)