Lines Matching refs:path
244 def _marshaled_dispatch(self, data, dispatch_method = None, path = None):
430 # Class attribute listing the accessible path components;
461 return self.path in self.rpc_paths
473 # Check that the path is legal
505 data, getattr(self, '_dispatch', None), self.path
615 def add_dispatcher(self, path, dispatcher):
616 self.dispatchers[path] = dispatcher
619 def get_dispatcher(self, path):
620 return self.dispatchers[path]
622 def _marshaled_dispatch(self, data, dispatch_method = None, path = None):
624 response = self.dispatchers[path]._marshaled_dispatch(
625 data, dispatch_method, path)
910 path_here = os.path.dirname(os.path.realpath(__file__))
911 css_path = os.path.join(path_here, "..", "pydoc_data", "_pydoc.css")
921 # Check that the path is legal
926 if self.path.endswith('.css'):
928 response = self._get_css(self.path)