Skip to content

Commit 44567a4

Browse files
authored
Add docstring to new functions
1 parent 995d6a1 commit 44567a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/tkinter/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,14 @@
5454
_space_re = None
5555

5656
def _get_magic_re():
57+
"""Internal function."""
5758
global _magic_re
5859
if _magic_re is None:
5960
_magic_re = re.compile(r'([\\{}])')
6061
return _magic_re
6162

6263
def _get_space_re():
64+
"""Internal function."""
6365
global _space_re
6466
if _space_re is None:
6567
_space_re = re.compile(r'([\s])', re.ASCII)

0 commit comments

Comments
 (0)