[Checkins] SVN: grok/branches/grok-martian/src/grok/_grok.py This logic had no use.

Martijn Faassen faassen at infrae.com
Wed Jun 20 16:17:59 EDT 2007


Log message for revision 76862:
  This logic had no use.
  

Changed:
  U   grok/branches/grok-martian/src/grok/_grok.py

-=-
Modified: grok/branches/grok-martian/src/grok/_grok.py
===================================================================
--- grok/branches/grok-martian/src/grok/_grok.py	2007-06-20 20:16:18 UTC (rev 76861)
+++ grok/branches/grok-martian/src/grok/_grok.py	2007-06-20 20:17:58 UTC (rev 76862)
@@ -81,14 +81,8 @@
 
 def grok_component(name, component,
                    context=None, module_info=None, templates=None):
-    kw = {}
-    if context is not None:
-        kw['context'] = context
-    if module_info is not None:
-        kw['module_info'] = module_info
-    if templates is not None:
-        kw['templates'] = templates
-    return the_multi_grokker.grok(name, component, **kw)
+    return the_multi_grokker.grok(name, component,
+                                  context, module_info, templates)
 
 def prepare_grok(name, module, kw):
     module_info = scan.module_info_from_module(module)



More information about the Checkins mailing list