From f54c4fd04f326d94684c7fcbf12df5cecae653c4 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 16 Apr 2010 13:15:44 +0200 Subject: [PATCH] Fixed wording for circular imports --- docs/patterns.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns.rst b/docs/patterns.rst index 91e0d5b6..5956ab83 100644 --- a/docs/patterns.rst +++ b/docs/patterns.rst @@ -87,7 +87,7 @@ And this is what `views.py` would look like:: .. admonition:: Circular Imports Every Python programmer hates it, and yet we just did that: circular - imports (That's when one module depends on another one. In this case + imports (That's when two module depend on each one. In this case `views.py` depends on `__init__.py`). Be advised that this is a bad idea in general but here it is actually fine. The reason for this is that we are not actually using the views in `__init__.py` and just