1. 17 Şub, 2008 1 kayıt (commit)
    • Eric Smith's avatar
      Fixes for shared 2.6 code that implements PEP 3101, advanced string · 8fd3eba0
      Eric Smith yazdı
      formatting.
      
      Includes:
       - Modifying tests for basic types to use __format__ methods, instead
         of builtin "format".
       - Adding PyObject_Format.
       - General str/unicode cleanup discovered when backporting to 2.6.
       - Removing datetimemodule.c's time_format, since it was identical
         to date_format.
      
      The files in Objects/stringlib that implement PEP 3101 (stringdefs.h,
      unicodedefs.h, formatter.h, string_format.h) are identical in trunk
      and py3k.  Any changes from here on should be made to trunk, and
      changes will propogate to py3k).
      8fd3eba0
  2. 15 Kas, 2007 1 kayıt (commit)
  3. 16 Eki, 2007 1 kayıt (commit)
  4. 01 Eyl, 2007 1 kayıt (commit)
  5. 28 Agu, 2007 1 kayıt (commit)
  6. 25 Agu, 2007 1 kayıt (commit)
    • Eric Smith's avatar
      Implementation of PEP 3101, Advanced String Formatting. · 8c663263
      Eric Smith yazdı
      Known issues:
      
      The string.Formatter class, as discussed in the PEP, is incomplete.
      
      Error handling needs to conform to the PEP.
      
      Need to fix this warning that I introduced in Python/formatter_unicode.c:
      Objects/stringlib/unicodedefs.h:26: warning: `STRINGLIB_CMP' defined but not used
      
      Need to make sure sign formatting is correct, more tests needed.
      
      Need to remove '()' sign formatting, left over from an earlier version of the PEP.
      8c663263