From 7c697bfcacda0e6bd18b1d91efae72f61b1c305f Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 11 Dec 2012 16:30:27 -0800 Subject: [PATCH] Update readme. --- README.rst | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index a938f706..dcb85540 100644 --- a/README.rst +++ b/README.rst @@ -9,12 +9,16 @@ Features * Format string syntax similar to the one used by `str.format `__ in Python. * Support for user-defined types. -* High speed: performance of the current proof-of-concept implementation - is close to that of IOStreams (see `Speed tests`_). +* High speed: performance of the current implementation is close to that of + ``printf``. See `Speed tests`_. * Small code size both in terms of source code (format consists of a single - header file and a single source file) and compiled code - (see `Compile time and code bloat`_). -* Easy deployment: small self-contained code base, no external dependencies, + header file and a single source file) and compiled code. + See `Compile time and code bloat`_. +* Reliability: the library has an extensive set of `unit tests + `__. +* Safety: the library is fully type safe, errors in format strings are + reported using exceptions. +* Ease of use: small self-contained code base, no external dependencies, permissive license. Examples