You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -269,7 +269,7 @@ pyobject.search - Implements the utility for locating the path to a specific obj
269
269
270
270
pyobject.newtypes - Defines a few new types. (experimental)
271
271
272
-
pyobject.super_reflect - Implements dynamic reflection logging (in development)
272
+
pyobject.super_proxy - Implements dynamic reflection proxy for objects (in development)
273
273
274
274
pyobj_extension - A C extension module offering functions to manipulate low-level Python objects.
275
275
@@ -479,15 +479,15 @@ list_in(obj, lst)::
479
479
Compared to the built-in Python call "obj in lst" that invokes the "==" operator (__eq__) multiple times, this function directly compares the pointers to improve efficiency.
480
480
481
481
482
-
Version: 1.2.7
482
+
Version: 1.2.7.3
483
483
484
484
Change Log
485
485
==========
486
486
487
487
2025-3-6(v1.2.7): Added support for special class attributes excluded from ``dir()`` (such as ``__flags__``, ``__mro__``) in pyobject.browser and modified the pyobj_extension module.
488
488
489
489
2025-2-15 (v1.2.6): Fixed the lag issue when browsing large objects in ``pyobject.browser``, improved the ``pyobject.code_`` module, introduced a new reflection library
490
-
``pyobject.super_reflect`` currently in development, and added ``getrefcount_nogil`` and ``setrefcount_nogil`` to the ``pyobj_extension`` module.
490
+
``pyobject.super_proxy`` currently in development, and added ``getrefcount_nogil`` and ``setrefcount_nogil`` to the ``pyobj_extension`` module.
491
491
492
492
2024-10-24 (v1.2.5): Fixed high DPI support for ``pyobject.browser`` on Windows, modified the ``pyobj_extension`` module, along with other improvements.
0 commit comments