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