Correct test_builtin locale handling.
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index 6248972..7fdc063 100644
--- a/Lib/test/test_builtin.py
+++ b/Lib/test/test_builtin.py
@@ -557,7 +557,7 @@
         # set locale to something that doesn't use '.' for the decimal point
         try:
             import locale
-            orig_locale = locale.setlocale(locale.LC_NUMERIC, '')
+            orig_locale = locale.setlocale(locale.LC_NUMERIC)
             locale.setlocale(locale.LC_NUMERIC, 'fr_FR')
         except:
             # if we can't set the locale, just ignore this test