bpo-37376: pprint support for SimpleNamespace (GH-14318)



https://bugs.python.org/issue37376
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst
index 9abf286..207c3f8 100644
--- a/Doc/library/pprint.rst
+++ b/Doc/library/pprint.rst
@@ -25,6 +25,9 @@
 
 Dictionaries are sorted by key before the display is computed.
 
+.. versionchanged:: 3.9
+   Added support for pretty-printing :class:`types.SimpleNamespace`.
+
 The :mod:`pprint` module defines one class:
 
 .. First the implementation class: