summaryrefslogtreecommitdiffstats
path: root/Python/Dependencies/future-0.18.2/docs/roadmap.rst
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2022-12-17 17:26:16 -0800
committeryum <yum.food.vr@gmail.com>2022-12-17 17:26:16 -0800
commit4d836989720523cd0363927e3e066f56b9dc445c (patch)
treef7a9ff7cb50eda1ff29e91c78067dcc5e0ce6233 /Python/Dependencies/future-0.18.2/docs/roadmap.rst
parentda754e9cf5b192239826aa1619e1ada3c98daa45 (diff)
Check in `future` package
I hit some issues installing Whisper and had to embed this package. I haven't taken the time to deeply understand what's going on. I think that embedded Python follows different rules about resolving module paths than regular system Python. Basically, `future`'s setup.py has a line like `import src`, where `src` is a module inside future (like `future/src/__init__.py`). This doesn't work unless we put that directory on the search path.
Diffstat (limited to 'Python/Dependencies/future-0.18.2/docs/roadmap.rst')
-rw-r--r--Python/Dependencies/future-0.18.2/docs/roadmap.rst46
1 files changed, 46 insertions, 0 deletions
diff --git a/Python/Dependencies/future-0.18.2/docs/roadmap.rst b/Python/Dependencies/future-0.18.2/docs/roadmap.rst
new file mode 100644
index 0000000..c5020d5
--- /dev/null
+++ b/Python/Dependencies/future-0.18.2/docs/roadmap.rst
@@ -0,0 +1,46 @@
+Development roadmap
+===================
+
+futurize script
+---------------
+
+1. "Safe" mode -- from Py2 to modern Py2 or Py3 to more-compatible Py3
+
+ - Split the fixers into two categories: safe and bold
+ - Safe is highly unlikely to break existing Py2 or Py3 support. The
+ output of this still requires :mod:`future` imports. Examples:
+
+ - Compatible metaclass syntax on Py3
+ - Explicit inheritance from object on Py3
+
+ - Bold might make assumptions about which strings on Py2 should be
+ unicode strings and which should be bytestrings.
+
+ - We should also build up a database of which standard library
+ interfaces on Py2 and Py3 accept unicode strings versus
+ byte-strings, which have changed, and which haven't.
+
+2. Windows support
+
+future package
+--------------
+
+- [Done] Add more tests for bytes ... preferably all from test_bytes.py in Py3.3.
+- [Done] Add remove_hooks() and install_hooks() as functions in the
+ :mod:`future.standard_library` module. (See the uprefix module for how
+ to do this.)
+
+Experimental:
+- Add::
+
+ from future import bytes_literals
+ from future import new_metaclass_syntax
+ from future import new_style_classes
+
+- [Done] Maybe::
+
+ from future.builtins import str
+
+ should import a custom str is a Py3 str-like object which inherits from unicode and
+ removes the decode() method and has any other Py3-like behaviours
+ (possibly stricter casting?)