1. 21 May, 2007 3 kayıt (commit)
  2. 20 May, 2007 3 kayıt (commit)
  3. 19 May, 2007 1 kayıt (commit)
    • Walter Dörwald's avatar
      Add a format specifier %R to PyUnicode_FromFormat(), which embeds · 7569dfe1
      Walter Dörwald yazdı
      the result of a call to PyObject_Repr() into the string. This makes
      it possible to simplify many repr implementations.
      
      PyUnicode_FromFormat() uses two steps to create the final string: A first
      pass through the format string determines the size of the final string and
      a second pass creates the string. To avoid calling PyObject_Repr() twice
      for each %R specifier, PyObject_Repr() is called during the size
      calculation step and the results are stored in an array (whose size is
      determined at the start by counting %R specifiers).
      7569dfe1
  4. 18 May, 2007 11 kayıt (commit)
  5. 17 May, 2007 8 kayıt (commit)
  6. 16 May, 2007 2 kayıt (commit)
  7. 15 May, 2007 12 kayıt (commit)