From 27293b8e3624cb13fa346016b65f0b8a71b0279a Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Thu, 8 Jan 2009 17:10:20 +0000 Subject: made codegen happen on module import rather than on object instantiation, this makes things like help(Session) much more useful git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@732760 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/invoker.py | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 python/qpid/invoker.py (limited to 'python/qpid/invoker.py') diff --git a/python/qpid/invoker.py b/python/qpid/invoker.py deleted file mode 100644 index 635f3ee769..0000000000 --- a/python/qpid/invoker.py +++ /dev/null @@ -1,48 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -import sys - -# TODO: need a better naming for this class now that it does the value -# stuff -class Invoker: - - def METHOD(self, name, resolved): - method = lambda *args, **kwargs: self.invoke(resolved, args, kwargs) - if sys.version_info[:2] > (2, 3): - method.__name__ = resolved.pyname - method.__doc__ = resolved.pydoc - method.__module__ = self.__class__.__module__ - self.__dict__[name] = method - return method - - def VALUE(self, name, resolved): - self.__dict__[name] = resolved - return resolved - - def ERROR(self, name, resolved): - raise AttributeError("%s instance has no attribute '%s'" % - (self.__class__.__name__, name)) - - def resolve_method(self, name): - return ERROR, None - - def __getattr__(self, name): - disp, resolved = self.resolve_method(name) - return disp(name, resolved) -- cgit v1.2.1