diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2011-09-26 11:36:34 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2011-09-26 11:36:34 +0200 |
commit | 2d13963f897afc927f974de0370057bcf2113e62 (patch) | |
tree | ec82ac8123dc0a399722eba3d4cd0c2335c6afa9 | |
parent | 8b8a58ca17f97eda64ca7a253d3cc11893508ac1 (diff) | |
download | logilab-common-2d13963f897afc927f974de0370057bcf2113e62.tar.gz |
fix typo
-rw-r--r-- | compat.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ 2.5, making them available in for earlier versions of python. See another compatibility snippets from other projects: - + :mod:`lib2to3.fixes` :mod:`coverage.backward` :mod:`unittest2.compatibility` @@ -51,7 +51,7 @@ else: def str_encode(string, encoding): return str(string) -# XXX callable builti-in seems back in all python versions +# XXX callable built-in seems back in all python versions try: callable = builtins.callable except AttributeError: |