- 21 Haz, 2008 1 kayıt (commit)
-
-
Facundo Batista yazdı
structures follows the common sense (and works like in 2.5 and 3.0).
-
- 12 May, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 24 Ock, 2008 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Shorter pprint's for empty sets and frozensets. Fix indentation of frozensets. Add tests including two complex data structures.
-
- 23 Ock, 2008 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 20 Ock, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
custom formatting of contents via subclassing PrettyPrinter.
-
- 02 Haz, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
the output required more than one line. "Small" dicts got displayed in seemingly random order (the hash-induced order produced by dict.__repr__). None of this was documented. Now pprint functions always sort dicts by key, and the docs promise it. This was proposed and agreed to during the PyCon 2006 core sprint -- I just didn't have time for it before now.
-
- 11 Kas, 2005 1 kayıt (commit)
-
-
Walter Dörwald yazdı
output stream, instead of writing it to a StringIO first and writing the result of this to the output stream. This should speed up the initial output.
-
- 15 Kas, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
attribute. Fixes SF bug #1065456.
-
- 14 May, 2004 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 03 Ara, 2003 2 kayıt (commit)
-
-
Walter Dörwald yazdı
and pass them along to the PrettyPrinter constructor.
-
Walter Dörwald yazdı
and dict too, as long as they don't overwrite __repr__().
-
- 07 Haz, 2003 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 31 Ara, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
Pass the right number of args to .format(). (Caught by pychecker.) - Protect the global namespace more carefully. - Don't use the types module now that we don't need to.
-
- 08 Tem, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
subclassing so many times it should simply be changed.
-
- 01 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 02 Nis, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
Partly responds to SF bug #505152.
-
- 28 Kas, 2001 1 kayıt (commit)
-
-
Barry Warsaw yazdı
output. Patch includes additional test case test_basic_line_wrap(). This patch is a candidate for Python 2.1.2.
-
- 13 Kas, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 01 Kas, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
saferepr(), a bit less for pformat().
-
- 09 Eki, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 04 Eyl, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
This closes SF patch #451538.
-
- 14 May, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
elements when crunching a list, dict or tuple. Now takes linear time instead -- huge speedup for even moderately large containers, and the code is notably simpler too. Added some basic "is the output correct?" tests to test_pprint.
-
Tim Peters yazdı
-
- 12 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 16 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
-
- 22 Ara, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
Holl <gerrit.holl@pobox.com>.
-
- 02 Eyl, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
be executed in all cases, not just when it's not a list, tuple or dict. Discovered by Christian Tismer.
-
- 17 Şub, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
return path.
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 18 Tem, 1997 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 18 Nis, 1997 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 16 Nis, 1997 3 kayıt (commit)
-
-
Fred Drake yazdı
internal use. Make sure the maxlevels and level parameters get passed to recursive invocations.
-
Fred Drake yazdı
- handles recursive data structures - formatting based on a PrettyPrinter object - allows a maximum nesting depth to be specified - provides safe repr()-like function which does not pretty-print
-
Guido van Rossum yazdı
(with some slight formatting changes). Feature requests: - Make it a class (everything should be a class); - support recursive data structures (like pp.py on the ftp contrib site).
-
- 15 Nis, 1997 1 kayıt (commit)
-
-
Fred Drake yazdı
Added pformat() function: formats object to a string representation with no trailing newline; returns the string.
-
- 26 Agu, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-