From 9c952b3ce0cbec5d58efe7ba6d43c5886674e724 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sat, 5 Mar 2011 14:31:01 +0100 Subject: [PATCH] actually don't expose unused _fillfuncargs --- _pytest/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/python.py b/_pytest/python.py index 61a3f63c9..0feb9785c 100644 --- a/_pytest/python.py +++ b/_pytest/python.py @@ -34,7 +34,7 @@ def pytest_namespace(): 'collect': { 'Module': Module, 'Class': Class, 'Instance': Instance, 'Function': Function, 'Generator': Generator, - '_fillfuncargs': fillfuncargs} + } } def pytest_funcarg__pytestconfig(request):