Skip to content

Commit a58a559

Browse files
Update stuff
1 parent 243300a commit a58a559

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed
12 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

Lib/test/test_tools/test_msgfmt.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ def test_compilation(self):
3939

4040
self.assertDictEqual(actual._catalog, expected._catalog)
4141

42+
def test_hash_table(self):
43+
pass
44+
4245
def test_po_with_bom(self):
4346
with temp_cwd():
4447
Path('bom.po').write_bytes(b'\xef\xbb\xbfmsgid "Python"\nmsgstr "Pioton"\n')
@@ -103,7 +106,7 @@ def test_version(self):
103106
for option in ('--version', '-V'):
104107
res = assert_python_ok(msgfmt, option)
105108
out = res.out.decode('utf-8').strip()
106-
self.assertEqual('msgfmt.py 1.2', out)
109+
self.assertEqual('msgfmt.py 1.3', out)
107110

108111
def test_invalid_option(self):
109112
res = assert_python_failure(msgfmt, '--invalid-option')
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:program:`msgfmt` now generates GNU hash tables.

0 commit comments

Comments
 (0)