Fixed
Details
Assignee
UnassignedUnassignedReporter
Andy FingerhutAndy FingerhutApproval
OkPatch
Code and TestPriority
MinorAffects versions
Fix versions
Details
Details
Assignee
Unassigned
UnassignedReporter
Andy Fingerhut
Andy FingerhutApproval
Ok
Patch
Code and Test
Priority
Affects versions
Fix versions
Created June 13, 2014 at 5:02 PM
Updated December 11, 2020 at 7:09 PM
Resolved December 11, 2020 at 7:09 PM
Short example illustrating the behavior:
(def f1 '(defn foo [^Integer x] ^{:bar 8} (inc x))) ;; pr shows all metadata, as expected (binding [*print-meta* true] (pr f1)) ;;=> ^{:line 2, :column 10} (defn foo [^Integer x] ^{:bar 8, :line 2, :column 33} (inc x))nil ;; pprint shows some metadata, but not all (binding [*print-meta* true] (clojure.pprint/pprint f1)) ;;=> (defn foo [^Integer x] (inc x))
Cause: pprint overrides collection printing and ignores print-meta, falls back to pr for other things.
Proposed: pprint should print meta on collections when
*print-meta*
is true.Patch: clj-1445.patch
Screened by: Ghadi. Does what it purports to do, no reflection introduced.