diff --git a/implementations/Python/joys.py b/implementations/Python/joys.py new file mode 100644 index 0000000..84eb37e --- /dev/null +++ b/implementations/Python/joys.py @@ -0,0 +1,11 @@ +import multiprocessing as mp +from joy import ( + initialize, + default_defs, + text_to_expression, + joy, + ) + + +if __name__ == '__main__': + mp.set_start_method('fork') diff --git a/implementations/Python/joy/__init__.py b/implementations/Python/ojoy/__init__.py similarity index 100% rename from implementations/Python/joy/__init__.py rename to implementations/Python/ojoy/__init__.py diff --git a/implementations/Python/joy/__main__.py b/implementations/Python/ojoy/__main__.py similarity index 100% rename from implementations/Python/joy/__main__.py rename to implementations/Python/ojoy/__main__.py diff --git a/implementations/Python/joy/defs.txt b/implementations/Python/ojoy/defs.txt similarity index 100% rename from implementations/Python/joy/defs.txt rename to implementations/Python/ojoy/defs.txt diff --git a/implementations/Python/joy/library.py b/implementations/Python/ojoy/library.py similarity index 100% rename from implementations/Python/joy/library.py rename to implementations/Python/ojoy/library.py diff --git a/implementations/Python/joy/utils/__init__.py b/implementations/Python/ojoy/utils/__init__.py similarity index 100% rename from implementations/Python/joy/utils/__init__.py rename to implementations/Python/ojoy/utils/__init__.py diff --git a/implementations/Python/joy/utils/snippets.py b/implementations/Python/ojoy/utils/snippets.py similarity index 100% rename from implementations/Python/joy/utils/snippets.py rename to implementations/Python/ojoy/utils/snippets.py