Add two tests for string.zfill
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index e207566..4b2f0e3 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -215,6 +215,9 @@
     test('endswith', 'ab', 0, 'ab', 0, 1)
     test('endswith', 'ab', 0, 'ab', 0, 0)
 
+    test('zfill', '34', '34', 1)
+    test('zfill', '34', '0034', 4)
+    
     # Encoding/decoding
     codecs = [('rot13', 'uryyb jbeyq'),
               ('base64', 'aGVsbG8gd29ybGQ=\n'),