diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-11-07 22:38:08 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-11-07 22:38:08 (GMT) |
commit | 25ee87cc50ab99a1342091b5067c074878c9b212 (patch) | |
tree | 8dbf2acab791d51f0b8d4bd3486a91614f3817a3 /Misc/NEWS | |
parent | c52d713b7a324b9ed29ba75f438bf11b96953e41 (diff) | |
download | cpython-25ee87cc50ab99a1342091b5067c074878c9b212.zip cpython-25ee87cc50ab99a1342091b5067c074878c9b212.tar.gz cpython-25ee87cc50ab99a1342091b5067c074878c9b212.tar.bz2 |
Patch #478654: Expose tk_chooseDirectory.
Also delegate kw arguments through ** calls.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -51,6 +51,9 @@ Extension modules Library +- tkFileDialog exposes a Directory class and askdirectory + convenience function. + - Symbolic group names in regular expressions must be unique. For example, the regexp r'(?P<abc>)(?P<abc>)' is not allowed, because a single name can't mean both "group 1" and "group 2" simultaneously. |