- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix

given by Campbell Barton).
This commit is contained in:
Barry Warsaw 2011-12-05 16:50:41 -05:00
commit 04f6974d84
2 changed files with 4 additions and 0 deletions

View File

@ -58,6 +58,7 @@ _Py_atomic_thread_fence(_Py_memory_order order)
static __inline__ void static __inline__ void
_Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order) _Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)
{ {
(void)address; /* shut up -Wunused-parameter */
switch(order) { switch(order) {
case _Py_memory_order_release: case _Py_memory_order_release:
case _Py_memory_order_acq_rel: case _Py_memory_order_acq_rel:

View File

@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
given by Campbell Barton).
- Issue #13503: Use a more efficient reduction format for bytearrays with - Issue #13503: Use a more efficient reduction format for bytearrays with
pickle protocol >= 3. The old reduction format is kept with older protocols pickle protocol >= 3. The old reduction format is kept with older protocols
in order to allow unpickling under Python 2. Patch by Irmen de Jong. in order to allow unpickling under Python 2. Patch by Irmen de Jong.