Added support for brace escaping in str.format

This commit is contained in:
Dmitry Vasiliev
2008-09-22 13:01:18 +04:00
parent 9c1c35f333
commit a2208995a6
4 changed files with 16 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
Revision 3.0.0 (2008-09-?):
- Updated support for str.format;
- Added new builtins introduced in Python 2.6: "ascii", "exec",
"memoryview", "print";
- Removed builtins: "apply", "basestring", "buffer", "callable", "coerce",
@@ -8,7 +9,9 @@ Revision 3.0.0 (2008-09-?):
Revision 2.6.2 (2008-09-?):
- Added "VMSError" exception;
- Added support for b"..." syntax;
- Added support for str.format brace escaping;
Revision 2.6.1 (2008-09-21):