Skip to content
  1. Jun 27, 2013
    • Sébastien Luttringer's avatar
      Deep refactoring · 084ed9b5
      Sébastien Luttringer authored
      - 2 new packages (image and repository).
      - Split big modules into little one under packages.
      - Replace full module import by needed objects
      - Avoid wildcard imports
      - Fix a lot of pylint error and warnings on modules
      084ed9b5
  2. Jun 19, 2013
  3. Jun 12, 2013
  4. Jun 11, 2013
  5. May 23, 2013
  6. Apr 11, 2013
  7. Nov 27, 2012
  8. Jun 04, 2012
  9. May 24, 2012
  10. May 23, 2012
  11. May 16, 2012
  12. May 15, 2012
  13. May 11, 2012
    • Sébastien Luttringer's avatar
      string interpolation must be done in unicode · ada63e45
      Sébastien Luttringer authored
      If we have to format (aka interpolatation) we need to be sure this have to be
      done in unicode and not in ascii. This avoid unicode error with ascii string
      encoded in utf-8.
      
      Example of failure between a string and an object
      
      b = Exception(u"é")
      Exception("error: %s" % b)
       => Exception("error: %s" % str(b)
       => UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 0: ordinal not in range(128)
      ada63e45
  14. Mar 26, 2012
  15. Mar 02, 2012
  16. Mar 01, 2012
  17. Feb 27, 2012
  18. Feb 20, 2012