Fix "sys.path modified" warning in test_strlit, by not replacing sys.path itself, only its contents.
diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py
index 30475a4..6bdc6e4 100644
--- a/Lib/test/test_strlit.py
+++ b/Lib/test/test_strlit.py
@@ -65,7 +65,7 @@
         sys.path.insert(0, self.tmpdir)
 
     def tearDown(self):
-        sys.path = self.save_path
+        sys.path[:] = self.save_path
         shutil.rmtree(self.tmpdir, ignore_errors=True)
 
     def test_template(self):