From cb88a6a55429a6e858d508d20126c8e7fde59985 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Fri, 9 Sep 2022 22:15:33 +1000 Subject: [PATCH] argparse: Move back to python-stdlib. Although this primarily makes sense for the unix port, there's nothing preventing it being used on any port, and it's written for MicroPython. Signed-off-by: Jim Mussared --- {unix-ffi => python-stdlib}/argparse/argparse.py | 0 {unix-ffi => python-stdlib}/argparse/manifest.py | 0 {unix-ffi => python-stdlib}/argparse/test_argparse.py | 0 unix-ffi/unittest/manifest.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename {unix-ffi => python-stdlib}/argparse/argparse.py (100%) rename {unix-ffi => python-stdlib}/argparse/manifest.py (100%) rename {unix-ffi => python-stdlib}/argparse/test_argparse.py (100%) diff --git a/unix-ffi/argparse/argparse.py b/python-stdlib/argparse/argparse.py similarity index 100% rename from unix-ffi/argparse/argparse.py rename to python-stdlib/argparse/argparse.py diff --git a/unix-ffi/argparse/manifest.py b/python-stdlib/argparse/manifest.py similarity index 100% rename from unix-ffi/argparse/manifest.py rename to python-stdlib/argparse/manifest.py diff --git a/unix-ffi/argparse/test_argparse.py b/python-stdlib/argparse/test_argparse.py similarity index 100% rename from unix-ffi/argparse/test_argparse.py rename to python-stdlib/argparse/test_argparse.py diff --git a/unix-ffi/unittest/manifest.py b/unix-ffi/unittest/manifest.py index 3f4ddae5..85a5f401 100644 --- a/unix-ffi/unittest/manifest.py +++ b/unix-ffi/unittest/manifest.py @@ -1,6 +1,6 @@ metadata(version="0.9.0") -require("argparse", unix_ffi=True) +require("argparse") require("fnmatch") module("unittest.py")