Changeset 90523 in vbox for trunk/src/libs/xpcom18a4/python
- Timestamp:
- Aug 5, 2021 9:37:31 AM (4 years ago)
- Location:
- trunk/src/libs/xpcom18a4/python/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/PyIID.cpp
r86333 r90523 266 266 ob_type = GetTypeObject(); 267 267 #endif 268 #if defined(Py_TRACE_REFS) || PY_VERSION_HEX < 0x03090000 /* VBox: Removed in 3.9, harmless. @bugref{10079} */ 268 269 _Py_NewReference(this); 270 #endif 269 271 m_iid = riid; 270 272 } -
trunk/src/libs/xpcom18a4/python/src/PyISupports.cpp
r86333 r90523 146 146 PR_AtomicIncrement(&cInterfaces); 147 147 PyXPCOM_DLLAddRef(); 148 #if defined(Py_TRACE_REFS) || PY_VERSION_HEX < 0x03090000 /* VBox: Removed in 3.9, harmless. @bugref{10079} */ 148 149 _Py_NewReference(this); 150 #endif 149 151 150 152 #ifdef VBOX_DEBUG_LIFETIMES -
trunk/src/libs/xpcom18a4/python/src/TypeObject.cpp
r86624 r90523 435 435 /* Initialize the PyObject part - needed so we can keep instance in a PyDict: */ 436 436 ob_type = PyXPCOM_GetInterfaceType(); 437 # if defined(Py_TRACE_REFS) || PY_VERSION_HEX < 0x03090000 /* VBox: Removed in 3.9, harmless. @bugref{10079} */ 437 438 _Py_NewReference(this); 439 # endif 438 440 439 441 #endif /* Py_LIMITED_API */
Note:
See TracChangeset
for help on using the changeset viewer.