From d42a8dfc0cc2c40f32f55a3f053d3717c1e3d829 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Mon, 24 Jan 2022 19:02:47 -0800 Subject: [PATCH] Move Python impl to impls dir. --- MANIFEST.in => implementations/Python/MANIFEST.in | 0 Makefile => implementations/Python/Makefile | 0 debugger.out => implementations/Python/debugger.out | 0 debugger.py => implementations/Python/debugger.py | 0 {joy => implementations/Python/joy}/__init__.py | 0 {joy => implementations/Python/joy}/__main__.py | 0 {joy => implementations/Python/joy}/defs.txt | 0 {joy => implementations/Python/joy}/joy.py | 0 {joy => implementations/Python/joy}/library.py | 0 {joy => implementations/Python/joy}/parser.py | 0 {joy => implementations/Python/joy}/utils/__init__.py | 0 {joy => implementations/Python/joy}/utils/errors.py | 0 {joy => implementations/Python/joy}/utils/generated_library.py | 0 {joy => implementations/Python/joy}/utils/pretty_print.py | 0 {joy => implementations/Python/joy}/utils/stack.py | 0 pyproject.toml => implementations/Python/pyproject.toml | 0 setup.py => implementations/Python/setup.py | 0 17 files changed, 0 insertions(+), 0 deletions(-) rename MANIFEST.in => implementations/Python/MANIFEST.in (100%) rename Makefile => implementations/Python/Makefile (100%) rename debugger.out => implementations/Python/debugger.out (100%) rename debugger.py => implementations/Python/debugger.py (100%) rename {joy => implementations/Python/joy}/__init__.py (100%) rename {joy => implementations/Python/joy}/__main__.py (100%) rename {joy => implementations/Python/joy}/defs.txt (100%) rename {joy => implementations/Python/joy}/joy.py (100%) rename {joy => implementations/Python/joy}/library.py (100%) rename {joy => implementations/Python/joy}/parser.py (100%) rename {joy => implementations/Python/joy}/utils/__init__.py (100%) rename {joy => implementations/Python/joy}/utils/errors.py (100%) rename {joy => implementations/Python/joy}/utils/generated_library.py (100%) rename {joy => implementations/Python/joy}/utils/pretty_print.py (100%) rename {joy => implementations/Python/joy}/utils/stack.py (100%) rename pyproject.toml => implementations/Python/pyproject.toml (100%) rename setup.py => implementations/Python/setup.py (100%) diff --git a/MANIFEST.in b/implementations/Python/MANIFEST.in similarity index 100% rename from MANIFEST.in rename to implementations/Python/MANIFEST.in diff --git a/Makefile b/implementations/Python/Makefile similarity index 100% rename from Makefile rename to implementations/Python/Makefile diff --git a/debugger.out b/implementations/Python/debugger.out similarity index 100% rename from debugger.out rename to implementations/Python/debugger.out diff --git a/debugger.py b/implementations/Python/debugger.py similarity index 100% rename from debugger.py rename to implementations/Python/debugger.py diff --git a/joy/__init__.py b/implementations/Python/joy/__init__.py similarity index 100% rename from joy/__init__.py rename to implementations/Python/joy/__init__.py diff --git a/joy/__main__.py b/implementations/Python/joy/__main__.py similarity index 100% rename from joy/__main__.py rename to implementations/Python/joy/__main__.py diff --git a/joy/defs.txt b/implementations/Python/joy/defs.txt similarity index 100% rename from joy/defs.txt rename to implementations/Python/joy/defs.txt diff --git a/joy/joy.py b/implementations/Python/joy/joy.py similarity index 100% rename from joy/joy.py rename to implementations/Python/joy/joy.py diff --git a/joy/library.py b/implementations/Python/joy/library.py similarity index 100% rename from joy/library.py rename to implementations/Python/joy/library.py diff --git a/joy/parser.py b/implementations/Python/joy/parser.py similarity index 100% rename from joy/parser.py rename to implementations/Python/joy/parser.py diff --git a/joy/utils/__init__.py b/implementations/Python/joy/utils/__init__.py similarity index 100% rename from joy/utils/__init__.py rename to implementations/Python/joy/utils/__init__.py diff --git a/joy/utils/errors.py b/implementations/Python/joy/utils/errors.py similarity index 100% rename from joy/utils/errors.py rename to implementations/Python/joy/utils/errors.py diff --git a/joy/utils/generated_library.py b/implementations/Python/joy/utils/generated_library.py similarity index 100% rename from joy/utils/generated_library.py rename to implementations/Python/joy/utils/generated_library.py diff --git a/joy/utils/pretty_print.py b/implementations/Python/joy/utils/pretty_print.py similarity index 100% rename from joy/utils/pretty_print.py rename to implementations/Python/joy/utils/pretty_print.py diff --git a/joy/utils/stack.py b/implementations/Python/joy/utils/stack.py similarity index 100% rename from joy/utils/stack.py rename to implementations/Python/joy/utils/stack.py diff --git a/pyproject.toml b/implementations/Python/pyproject.toml similarity index 100% rename from pyproject.toml rename to implementations/Python/pyproject.toml diff --git a/setup.py b/implementations/Python/setup.py similarity index 100% rename from setup.py rename to implementations/Python/setup.py