From d4030539e0788d34462af873aafcbf519d2507d8 Mon Sep 17 00:00:00 2001 From: Dave Foster Date: Thu, 19 Jul 2012 16:57:06 -0400 Subject: [PATCH] Move ColoredStreamHandler out of pyon dir and into new putil dir --- putil/README.md | 11 +++++++++++ putil/__init__.py | 0 {pyon/util => putil}/clog.py | 0 3 files changed, 11 insertions(+) create mode 100644 putil/README.md create mode 100644 putil/__init__.py rename {pyon/util => putil}/clog.py (100%) diff --git a/putil/README.md b/putil/README.md new file mode 100644 index 00000000..77c2ad4d --- /dev/null +++ b/putil/README.md @@ -0,0 +1,11 @@ +Pyon Utilities +======== + +Modules contained in here are utillity classes Pyon uses, but are not enclosed +in the `pyon/` top level directory. Anything included from `pyon/` does +automatic gevent monkey-patching, and items here may be used in places where +this is not allowed. + +The name `putil` was chosen to avoid conflict with any other `util` module +tree as Python does not merge module trees but overrides them. + diff --git a/putil/__init__.py b/putil/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pyon/util/clog.py b/putil/clog.py similarity index 100% rename from pyon/util/clog.py rename to putil/clog.py