Resolve bug 7847 by including documentation for -J, -U, and -X under "Options
you shouldn't use".
diff --git a/Misc/NEWS b/Misc/NEWS
index 66748ef..c1c1f88 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,8 +17,8 @@
library would return a bogus result; on Solaris, it was possible to crash
the interpreter. Patch by Stefan Krah.
-- Issue #7853: Normalize exceptions before they are passed to a context managers
- __exit__ method.
+- Issue #7853: Normalize exceptions before they are passed to a context
+ managers __exit__ method.
- Issue #7385: Fix a crash in `MemoryView_FromObject` when
`PyObject_GetBuffer` fails. Patch by Florent Xicluna.
@@ -153,6 +153,9 @@
Documentation
-------------
+- Updating `Using Python` documentation to include description of CPython's
+ -J, -U and -X options.
+
- Update python manual page (options -B, -O0, -s, environment variables
PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE).