From f4317dadc4b72cfd7c13c8ddaf2ac5571b732732 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 12 Apr 2018 08:59:18 +0200 Subject: [PATCH] Better docs for Environment --- jedi/api/environment.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jedi/api/environment.py b/jedi/api/environment.py index 40dbf8db..d4ca0bc7 100644 --- a/jedi/api/environment.py +++ b/jedi/api/environment.py @@ -30,6 +30,11 @@ class _BaseEnvironment(object): class _Environment(_BaseEnvironment): + """ + This class is supposed to be created by internal Jedi architecture. You + should not create it directly. Please use create_environment or the other + functions instead. + """ def __init__(self, path, executable): self.path = os.path.abspath(path) """