10 lines
No EOL
165 B
Python
10 lines
No EOL
165 B
Python
"""Global variables (avoid as much as possible).
|
|
Author: Satwik Kottur
|
|
"""
|
|
|
|
def initialize():
|
|
"""Sets up global variables.
|
|
"""
|
|
|
|
global METAINFO
|
|
METAINFO = {} |