Petr Viktorin
7dfa048bbb
gh-135228: Create __dict__ and __weakref__ descriptors for object (GH-136966)
...
This partially reverts #137047 , keeping the tests for GC collectability of the
original class that dataclass adds `__slots__` to.
The reference leaks solved there are instead solved by having the `__dict__` &
`__weakref__` descriptors not tied to (and referencing) their class.
Instead, they're shared between all classes that need them (within
an interpreter).
The `__objclass__` ol the descriptors is set to `object`, since these
descriptors work with *any* object. (The appropriate checks were already
made in the get/set code, so the `__objclass__` check was redundant.)
The repr of these descriptors (and any others whose `__objclass__` is `object`)
now doesn't mention the objclass.
This change required adjustment of introspection code that checks
`__objclass__` to determine an object's “own” (i.e. not inherited) `__dict__`.
Third-party code that does similar introspection of the internals will also
need adjusting.
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com >
2025-08-18 14:25:51 +02:00
..
2025-08-03 19:41:12 +03:00
2025-04-22 11:29:20 +02:00
2025-05-31 07:29:03 -07:00
2025-08-04 16:48:24 +02:00
2025-08-02 11:57:01 +00:00
2025-07-30 23:41:28 +05:30
2025-08-04 14:35:00 +00:00
2025-07-12 09:55:12 +02:00
2025-08-04 14:35:00 +00:00
2025-07-11 16:48:43 +02:00
2025-06-27 12:00:25 +02:00
2025-08-12 13:16:54 +02:00
2025-07-25 12:46:12 +03:00
2025-07-12 13:30:09 +00:00
2025-08-13 14:15:12 -04:00
2025-05-08 06:13:57 -07:00
2025-03-11 23:17:58 +00:00
2025-07-22 12:50:13 -07:00
2025-08-18 13:53:01 +02:00
2025-08-09 18:25:49 +00:00
2025-07-06 07:35:30 +00:00
2025-06-27 12:00:25 +02:00
2025-07-27 12:47:15 +01:00
2025-05-22 13:17:22 +03:00
2025-07-22 12:50:13 -07:00
2025-07-29 14:25:50 -04:00
2025-08-11 09:16:54 +03:00
2025-07-15 11:56:42 +02:00
2025-05-22 13:17:22 +03:00
2025-01-16 18:48:42 -08:00
2025-05-25 20:09:02 +00:00
2025-05-03 17:58:49 +03:00
2025-07-09 13:25:46 +05:30
2025-08-14 14:59:04 +03:00
2025-07-21 23:16:30 +00:00
2025-07-08 07:51:36 +00:00
2025-07-06 16:44:20 -07:00
2025-04-25 00:46:20 +01:00
2025-06-13 16:47:49 -06:00
2025-04-29 02:21:47 +00:00
2025-08-05 10:32:21 +02:00
2025-05-22 13:17:22 +03:00
2025-05-08 04:38:57 +00:00
2025-06-18 14:17:02 +02:00
2025-08-10 22:32:50 +00:00
2025-06-19 21:23:38 +01:00
2025-08-12 20:17:35 +00:00
2025-08-09 18:25:49 +00:00
2025-02-25 09:24:48 +00:00
2025-05-22 16:46:57 +00:00
2025-05-22 13:17:22 +03:00
2025-06-18 14:17:02 +02:00
2025-08-14 22:22:37 +03:00
2025-07-22 12:50:13 -07:00
2025-05-03 07:54:33 +00:00
2025-07-13 15:33:34 +02:00
2025-07-31 16:17:27 +00:00
2025-03-16 14:09:33 +01:00
2025-06-11 17:35:48 -06:00
2025-08-12 16:23:13 +01:00
2025-03-19 13:05:09 -04:00
2025-02-07 22:39:54 +00:00
2025-05-22 13:17:22 +03:00
2025-02-14 16:21:45 -05:00
2025-05-22 13:17:22 +03:00
2025-03-19 06:30:22 +08:00
2025-08-13 06:47:47 -07:00
2025-07-20 14:55:44 -07:00
2025-02-28 16:57:48 -05:00
2025-05-04 23:46:21 +00:00
2025-07-09 13:25:46 +05:30
2025-06-19 21:23:38 +01:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-03-17 17:22:35 +00:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-03-26 14:38:47 -04:00
2025-05-22 13:17:22 +03:00
2025-05-21 16:40:50 +02:00
2025-07-22 12:50:13 -07:00
2025-07-10 11:57:29 +03:00
2025-07-12 13:37:52 +00:00
2025-05-22 13:17:22 +03:00
2025-07-31 14:06:33 +02:00
2025-05-22 13:17:22 +03:00
2025-05-31 13:38:05 +02:00
2025-07-24 15:50:01 -05:00
2025-05-22 13:17:22 +03:00
2025-08-04 14:35:00 +00:00
2025-05-05 22:46:05 +00:00
2025-05-22 13:17:22 +03:00
2025-06-13 16:47:49 -06:00
2025-05-25 20:09:02 +00:00
2025-08-06 14:35:27 +02:00
2025-05-10 15:00:43 +03:00
2025-08-07 09:10:56 +03:00
2025-08-05 19:25:57 +01:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-04-28 06:10:28 -07:00
2025-03-27 21:06:52 +02:00
2025-06-27 12:00:25 +02:00
2025-04-09 16:18:54 -07:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-05-22 14:08:44 -07:00
2025-08-14 11:04:41 +03:00
2025-06-12 14:46:47 -07:00
2025-05-25 20:09:02 +00:00
2025-06-02 23:35:41 +03:00
2025-05-22 13:17:22 +03:00
2025-06-02 21:08:26 +03:00
2025-05-22 13:17:22 +03:00
2025-07-07 15:14:17 +03:00
2025-07-07 11:16:27 +03:00
2025-05-22 13:17:22 +03:00
2025-08-18 14:25:51 +02:00
2025-06-16 12:55:20 -04:00
2025-07-11 21:18:47 +03:00
2025-02-25 09:24:48 +00:00
2025-05-28 03:46:41 +03:00
2025-08-08 18:34:02 +03:00
2025-08-13 08:58:26 -07:00
2025-03-13 10:55:23 +01:00
2025-05-22 13:17:22 +03:00
2025-07-15 10:45:41 +01:00
2025-07-10 16:49:09 -07:00
2025-01-21 16:10:08 +00:00
2025-05-22 13:17:22 +03:00
2025-03-17 20:48:54 +00:00
2025-05-22 14:08:44 -07:00
2025-08-14 15:14:00 +02:00
2025-07-10 18:44:24 +01:00
2025-08-16 15:16:04 +02:00
2025-07-22 12:13:38 +02:00
2025-03-07 11:36:12 -08:00
2025-05-22 13:17:22 +03:00
2025-06-30 17:56:11 -04:00
2025-08-07 16:32:17 -07:00
2025-06-27 12:00:25 +02:00
2025-02-14 04:54:56 +00:00
2025-05-03 17:58:21 +03:00
2025-06-27 12:00:25 +02:00
2025-07-07 11:16:31 +03:00
2025-04-01 10:18:42 -07:00
2025-08-03 17:10:51 +01:00
2025-04-02 14:30:19 +02:00
2025-04-12 12:02:43 +00:00
2025-05-08 10:53:53 +03:00
2025-08-07 17:45:33 -07:00
2025-07-21 15:25:25 +03:00
2025-04-11 09:37:22 +01:00
2025-05-22 13:17:22 +03:00
2025-07-30 10:19:19 +03:00
2025-04-11 09:37:22 +01:00
2025-03-16 14:09:33 +01:00
2025-05-06 14:56:20 +03:00
2025-07-04 23:44:37 +10:00
2025-07-20 14:08:13 +02:00
2025-08-06 17:13:58 +01:00
2025-06-03 08:40:45 +02:00
2025-03-18 16:28:00 -05:00
2025-07-20 09:43:40 -07:00
2025-08-07 15:31:56 -07:00
2025-05-05 17:52:49 +02:00
2025-07-26 08:22:06 +00:00
2025-08-17 13:37:50 +03:00
2025-06-06 13:52:48 +02:00
2025-08-08 12:07:15 -07:00
2025-07-20 13:53:54 +00:00
2025-05-24 13:48:50 +02:00
2025-05-25 20:09:02 +00:00
2025-02-06 19:15:11 -08:00
2025-05-22 13:17:22 +03:00
2025-08-07 16:32:17 -07:00
2025-05-27 15:09:46 +02:00
2025-08-11 15:04:47 +02:00
2025-05-22 14:08:44 -07:00
2025-06-29 18:04:02 -04:00
2025-03-12 08:40:59 +01:00
2025-05-22 13:17:22 +03:00
2025-05-09 12:15:16 +05:30
2025-05-27 15:59:45 +01:00
2025-06-29 18:04:02 -04:00
2025-08-18 10:11:15 +03:00
2025-07-09 13:25:46 +05:30
2025-01-20 13:50:10 +01:00
2025-05-22 13:17:22 +03:00
2025-04-14 09:25:58 +03:00
2025-02-25 09:24:48 +00:00
2025-07-12 11:31:10 +00:00
2025-06-13 07:32:27 +09:00
2025-05-23 19:58:34 +03:00
2025-04-12 07:46:19 +00:00
2025-05-05 22:46:05 +00:00
2025-05-05 16:07:24 +00:00
2025-07-22 16:39:50 +03:00
2025-07-31 14:22:22 +01:00
2025-04-30 10:11:09 +09:00
2025-06-22 19:48:06 +00:00
2025-07-30 10:19:19 +03:00
2025-03-19 19:33:01 +00:00
2025-05-20 11:24:11 -04:00
2025-04-30 16:41:50 +03:00
2025-06-27 12:00:25 +02:00
2025-05-22 13:17:22 +03:00
2025-07-16 15:33:15 +02:00
2025-02-25 09:24:48 +00:00
2025-05-10 14:10:58 -04:00
2025-07-01 20:24:04 +03:00
2025-08-07 14:54:12 -07:00
2025-07-22 16:47:24 +01:00
2025-05-22 13:17:22 +03:00
2025-04-18 18:14:54 +01:00
2025-03-13 10:57:40 +01:00
2025-06-29 09:56:52 +02:00
2025-03-14 11:38:31 +00:00
2025-04-14 09:25:58 +03:00
2025-05-10 15:00:43 +03:00
2025-05-22 13:17:22 +03:00
2025-07-30 10:19:19 +03:00
2025-06-27 12:00:25 +02:00
2025-02-25 23:04:27 +02:00
2025-05-22 13:17:22 +03:00
2025-05-05 22:46:05 +00:00
2025-07-22 12:50:13 -07:00
2025-05-22 13:17:22 +03:00
2025-07-01 17:31:07 +02:00
2025-07-01 10:54:08 +02:00
2025-06-02 23:25:32 +03:00
2025-06-18 18:26:01 +03:00
2025-07-01 17:31:07 +02:00
2025-05-28 17:43:52 +02:00
2025-06-24 12:21:35 +02:00
2025-07-20 10:57:54 +02:00
2025-08-14 20:58:11 +03:00
2025-06-27 12:00:25 +02:00
2025-08-07 11:06:37 +03:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-08-18 07:57:15 +08:00
2025-07-22 16:47:24 +01:00
2025-04-30 10:11:09 +09:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-07-11 21:18:47 +03:00
2025-07-12 14:27:32 +02:00
2025-05-05 22:46:05 +00:00
2025-05-25 20:09:02 +00:00
2025-08-04 14:35:00 +00:00
2025-08-15 14:00:43 -04:00
2025-08-05 10:16:14 +00:00
2025-05-22 13:17:22 +03:00
2025-08-10 14:47:11 +00:00
2025-05-28 20:11:09 +03:00
2025-05-22 13:17:22 +03:00
2025-06-27 12:00:25 +02:00
2025-06-27 12:00:25 +02:00
2025-05-19 17:54:48 -07:00
2025-03-26 15:01:18 +01:00
2025-06-27 16:47:03 +03:00
2025-05-03 17:58:49 +03:00
2025-05-02 18:24:52 +02:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-07-22 12:50:13 -07:00
2025-07-13 21:09:42 +03:00
2025-06-30 21:52:26 +03:00
2025-03-11 14:04:22 -04:00
2025-03-18 12:33:46 +00:00
2025-08-04 14:35:00 +00:00
2025-07-22 11:53:05 +00:00
2025-08-06 14:59:22 +02:00
2025-07-11 16:45:31 +02:00
2025-05-22 13:17:22 +03:00
2025-04-19 16:18:03 +01:00
2025-03-13 10:57:40 +01:00
2025-05-08 15:57:30 +03:00
2025-08-04 14:35:00 +00:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-04-16 10:20:07 +03:00
2025-05-27 04:49:28 -04:00
2025-02-20 10:13:44 -05:00
2025-08-15 15:14:13 +00:00
2025-03-22 11:46:36 -04:00
2025-07-21 08:44:26 +02:00
2025-01-21 11:28:34 +01:00
2025-03-04 11:34:59 -08:00
2025-08-14 11:04:41 +03:00
2025-04-25 15:01:48 +03:00
2025-05-22 13:17:22 +03:00
2025-01-03 07:50:24 +00:00
2025-07-20 20:49:00 +02:00
2025-08-03 10:40:55 +03:00
2025-03-28 15:55:40 +01:00
2025-02-21 14:51:13 +01:00
2025-07-21 08:44:26 +02:00
2025-04-14 09:24:41 +03:00
2025-04-16 13:05:54 +03:00
2025-04-14 01:49:02 +01:00
2025-01-12 12:53:17 +02:00
2025-07-27 11:44:41 +00:00
2025-04-14 09:24:41 +03:00
2025-06-06 13:52:48 +02:00
2025-05-22 13:17:22 +03:00
2025-03-13 10:57:40 +01:00
2025-07-15 10:45:41 +01:00
2025-07-12 14:06:15 +02:00
2025-07-22 12:50:13 -07:00
2025-07-13 08:49:12 +03:00
2025-08-07 17:45:33 -07:00
2025-05-22 13:17:22 +03:00
2025-05-25 20:09:02 +00:00
2025-05-22 13:17:22 +03:00
2025-03-20 16:35:52 +00:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-01-07 12:40:41 +02:00
2025-07-16 14:02:25 +00:00
2025-07-03 10:48:47 +03:00
2025-05-22 13:17:22 +03:00
2025-04-18 18:14:54 +01:00
2025-05-22 13:17:22 +03:00
2025-05-22 13:17:22 +03:00
2025-05-27 10:48:34 +02:00
2025-07-10 08:47:27 -04:00