- 07 Nis, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r62199 | martin.v.loewis | 2008-04-07 05:08:28 +0200 (Mo, 07 Apr 2008) | 2 lines Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. ........
-
- 24 Şub, 2008 1 kayıt (commit)
-
-
Eric Smith yazdı
-
- 18 Şub, 2008 1 kayıt (commit)
-
-
Eric Smith yazdı
-
- 17 Şub, 2008 1 kayıt (commit)
-
-
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).
-
- 19 Ara, 2007 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 02 Ara, 2007 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 15 Kas, 2007 1 kayıt (commit)
-
-
Thomas Heller yazdı
#define for PyObject_Unicode in object.h.
-
- 05 Eyl, 2007 1 kayıt (commit)
-
-
Eric Smith yazdı
-
- 04 Eyl, 2007 1 kayıt (commit)
-
-
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.
-
- 03 Eyl, 2007 1 kayıt (commit)
-
-
Eric Smith yazdı
Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added.
-
- 29 Agu, 2007 1 kayıt (commit)
-
-
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.
-
- 28 Agu, 2007 2 kayıt (commit)
-
-
Eric Smith yazdı
4 elements. No need for old is_markup element, the same information is indicated by literal_string being None. Factored string.Formatter class to make subclasses easier to write.
-
Eric Smith yazdı
-
- 27 Agu, 2007 4 kayıt (commit)
-
-
Eric Smith yazdı
Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6.
-
Eric Smith yazdı
Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h.
-
Neal Norwitz yazdı
Stop polluting namespace.
-
Neal Norwitz yazdı
"{0:.{precision}s}".format('hello world', precision=5) I pretty sure it's because of the 'precision' keyword. Still need to investigate further.
-
- 26 Agu, 2007 1 kayıt (commit)
-
-
Eric Smith yazdı
-
- 25 Agu, 2007 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
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.
-