From bee3fcdf7542c92364914d0ec15f880a40d2fab6 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Sat, 29 Jun 2013 10:37:28 -0400 Subject: [PATCH] On Python 3.3, the __loader__ variable may get set when modules are loaded, so this is ok to override --- lib/matplotlib/tests/test_basic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/matplotlib/tests/test_basic.py b/lib/matplotlib/tests/test_basic.py index a77ccc87ab3e..415d2de28e6b 100644 --- a/lib/matplotlib/tests/test_basic.py +++ b/lib/matplotlib/tests/test_basic.py @@ -16,6 +16,7 @@ def test_override_builtins(): '__name__', '__doc__', '__package__', + '__loader__', 'any', 'all', 'sum'