1. 07 Nis, 2008 1 kayıt (commit)
  2. 24 Şub, 2008 1 kayıt (commit)
  3. 18 Şub, 2008 1 kayıt (commit)
  4. 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
  5. 19 Ara, 2007 1 kayıt (commit)
  6. 02 Ara, 2007 1 kayıt (commit)
  7. 15 Kas, 2007 1 kayıt (commit)
  8. 05 Eyl, 2007 1 kayıt (commit)
  9. 04 Eyl, 2007 1 kayıt (commit)
    • Eric Smith's avatar
      Changed some ValueError's to KeyError and IndexError. · 11529195
      Eric Smith yazdı
      Corrected code for invalid conversion specifier.
      Added tests to verify.
      
      Modified string.Formatter to correctly expand format_spec's,
      and added a limit to recursion depth.  Added _vformat()
      method to support both of these.
      11529195
  10. 03 Eyl, 2007 1 kayıt (commit)
  11. 29 Agu, 2007 1 kayıt (commit)
    • Eric Smith's avatar
      Modified parsing of format strings, so that we always return · 625cbf28
      Eric Smith yazdı
      a tuple (literal, field_name, format_spec, conversion).
      
      literal will always be a string, but might be of zero length.
      field_name will be None if there is no markup text
      format_spec will be a (possibly zero length) string if
        field_name is non-None
      conversion will be a one character string, or None
      
      This makes the Formatter class, and especially it's parse()
      method, easier to understand.
      
      Suggestion was by Jim Jewett, inspired by the "tail" of an
      elementtree node.
      
      Also, fixed a reference leak in fieldnameiter_next.
      625cbf28
  12. 28 Agu, 2007 2 kayıt (commit)
  13. 27 Agu, 2007 4 kayıt (commit)
  14. 26 Agu, 2007 1 kayıt (commit)
  15. 25 Agu, 2007 2 kayıt (commit)
    • Neal Norwitz's avatar
      Get rid of compiler warning on 64-bit · 3ef6a579
      Neal Norwitz yazdı
      3ef6a579
    • 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