File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ _Py_atomic_thread_fence(_Py_memory_order order)
5858static __inline__ void
5959_Py_ANNOTATE_MEMORY_ORDER (const volatile void * address , _Py_memory_order order )
6060{
61+ (void )address ; /* shut up -Wunused-parameter */
6162 switch (order ) {
6263 case _Py_memory_order_release :
6364 case _Py_memory_order_acq_rel :
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ What's New in Python 3.2.3?
1010Core and Builtins
1111-----------------
1212
13+ - Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
14+ given by Campbell Barton).
15+
1316- Issue #7111: Python can now be run without a stdin, stdout or stderr
1417 stream. It was already the case with Python 2. However, the corresponding
1518 sys module entries are now set to None (instead of an unusable file object).
You can’t perform that action at this time.
0 commit comments