Issue #6857: Fix Decimal formatting to be consistent with existing float
formatting:  both are now right-aligned by default.
diff --git a/Misc/NEWS b/Misc/NEWS
index daea539..3c1c54e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -366,6 +366,9 @@
 Library
 -------
 
+- Issue #6857: Default format() alignment should be '>' for Decimal
+  instances.
+
 - Issue #6795: int(Decimal('nan')) now raises ValueError instead of
   returning NaN or raising InvalidContext.  Also, fix infinite recursion
   in long(Decimal('nan')).