Changeset 90623 in vbox for trunk/src/libs
- Timestamp:
- Aug 11, 2021 10:25:34 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146234
- Location:
- trunk/src/libs/xpcom18a4/python/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/PyIID.cpp
r90523 r90623 269 269 _Py_NewReference(this); 270 270 #endif 271 #if PY_VERSION_HEX >= 0x03090000 /* VBox: Needed for 3.9 and up. @bugref{10079} */ 272 PyObject_Init(this, ob_type); 273 #endif 274 271 275 m_iid = riid; 272 276 } -
trunk/src/libs/xpcom18a4/python/src/PyISupports.cpp
r90523 r90623 149 149 _Py_NewReference(this); 150 150 #endif 151 #if PY_VERSION_HEX >= 0x03090000 /* VBox: Needed for 3.9 and up. @bugref{10079} */ 152 PyObject_Init(this, ob_type); 153 #endif 151 154 152 155 #ifdef VBOX_DEBUG_LIFETIMES -
trunk/src/libs/xpcom18a4/python/src/TypeObject.cpp
r90523 r90623 438 438 _Py_NewReference(this); 439 439 # endif 440 # if PY_VERSION_HEX >= 0x03090000 /* VBox: Needed for 3.9 and up. @bugref{10079} */ 441 PyObject_Init(this, ob_type); 442 # endif 440 443 441 444 #endif /* Py_LIMITED_API */
Note:
See TracChangeset
for help on using the changeset viewer.