From 3875113f0e8a8ec333b61000fbe038a2725903f4 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 16 Dec 2019 19:23:26 -0500 Subject: Be clear about the documented parts of the API. --- coverage/control.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'coverage/control.py') diff --git a/coverage/control.py b/coverage/control.py index 28d57535..1de0e28f 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -73,6 +73,10 @@ class Coverage(object): cov.stop() cov.html_report(directory='covhtml') + Note: in keeping with Python custom, names starting with underscore are + not part of the public API. They might stop working at any point. Please + limit yourself to documented methods to avoid problems. + """ # The stack of started Coverage instances. -- cgit v1.2.1