Here's another answer that works by overriding and using the stock pprint() function internally. Unlike my earlier one it will handle OrderedDict's inside another container such as a list and should handle any optional keyword arguments given -- however it does not have the same degree of control over the output that the other afforded.
It works by redirecting the stock function's output into a temporary buffer and then word wraps that before sending it on to the output stream. While the final output produced isn't always real pretty, it may be "good enough" to use as a workaround.
Update
Simplified by using standard library textwrap module.
from collections import OrderedDict
from cStringIO import StringIO
from pprint import pprint as pp_pprint
import sys
import textwrap
def pprint(object, **kwrds):
try:
width = kwrds['width']
except KeyError: # unlimited, use stock function
pp_pprint(object, **kwrds)
return
buffer = StringIO()
stream = kwrds.get('stream', sys.stdout)
kwrds.update({'stream': buffer})
pp_pprint(object, **kwrds)
words = buffer.getvalue().split()
buffer.close()
# word wrap output onto multiple lines <= width characters
print >> stream, textwrap.fill(' '.join(words), width=width)
d = dict((('john',1), ('paul',2), ('mary',3)))
od = OrderedDict((('john',1), ('paul',2), ('mary',3)))
lod = [OrderedDict((('john',1), ('paul',2), ('mary',3))),
OrderedDict((('moe',1), ('curly',2), ('larry',3))),
OrderedDict((('weapons',1), ('mass',2), ('destruction',3)))]
pprint(d, width=40)
# {'john': 1, 'mary': 3, 'paul': 2}
pprint(od, width=40)
# OrderedDict([('john', 1), ('paul', 2),
# ('mary', 3)])
pprint(lod, width=40)
# [OrderedDict([('john', 1), ('paul', 2),
# ('mary', 3)]), OrderedDict([('moe', 1),
# ('curly', 2), ('larry', 3)]),
# OrderedDict([('weapons', 1), ('mass',
# 2), ('destruction', 3)])]