From 77e6c99f9d8e34e85add7671d89bf7698a4fe5c2 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 30 Sep 2008 00:48:53 -0400 Subject: Migrate to new source tree layoute --- ipa_server/context.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ipa_server/context.py (limited to 'ipa_server/context.py') diff --git a/ipa_server/context.py b/ipa_server/context.py new file mode 100644 index 00000000..e20587cc --- /dev/null +++ b/ipa_server/context.py @@ -0,0 +1,29 @@ +# Authors: Rob Crittenden +# +# Copyright (C) 2008 Red Hat +# see file 'COPYING' for use and warranty information +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; version 2 only +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +# This should only be imported once. Importing again will cause the +# a new instance to be created in the same thread + +# To use: +# from ipa_server.context import context +# context.foo = "bar" + +import threading + +context = threading.local() -- cgit