MCPcopy Index your code
hub / github.com/RustPython/RustPython / _init_categories

Function _init_categories

Lib/locale.py:1727–1730  ·  view source on GitHub ↗
(categories=categories)

Source from the content-addressed store, hash-verified

1725 """
1726 categories = {}
1727 def _init_categories(categories=categories):
1728 for k,v in globals().items():
1729 if k[:3] == 'LC_':
1730 categories[k] = v
1731 _init_categories()
1732 del categories['LC_ALL']
1733

Callers 1

_print_localeFunction · 0.85

Calls 2

globalsFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected