Jiseok CHOI
e096ce7bc7
Implement property.__name__ attribute ( #6230 )
...
* Implement property.__name__ attribute
Add getter and setter for the __name__ attribute on property objects.
The getter returns the explicitly set name if available, otherwise
falls back to the getter function's __name__. Raises AttributeError
if no name is available, matching CPython 3.13 behavior.
The implementation handles edge cases:
- Returns None when explicitly set to None
- Propagates non-AttributeError exceptions from getter's __getattr__
- Raises property-specific AttributeError when getter lacks __name__
This fix enables test_property_name in test_property.py to pass.
* Refactor to use get_property_name in __name__ implementation
Consolidate duplicate logic by making name_getter() use the existing
get_property_name() helper method. This eliminates code duplication
and improves maintainability.
Changes:
- Update get_property_name() to return PyResult<Option<PyObjectRef>>
to properly handle and propagate non-AttributeError exceptions
- Simplify name_getter() to delegate to get_property_name()
- Update format_property_error() to handle the new return type
This addresses review feedback about the relationship between
get_property_name() and __name__ implementation.
* style comment
2025-11-01 18:30:03 +09:00
..
2025-08-01 22:39:00 +09:00
2024-05-08 12:52:33 +09:00
2025-10-28 13:19:12 +09:00
2025-08-04 20:08:17 +09:00
2025-08-23 19:45:53 +03:00
2025-07-25 19:04:49 +09:00
2025-08-23 19:45:53 +03:00
2022-08-15 16:09:32 +09:00
2024-03-21 21:51:57 +09:00
2025-08-20 14:16:19 +09:00
2025-08-24 10:36:07 +03:00
2021-05-14 19:56:15 -04:00
2025-10-22 10:57:47 +03:00
2025-09-11 22:42:19 +09:00
2025-10-22 22:34:52 +09:00
2025-07-15 01:45:42 +09:00
2025-10-20 17:32:05 +09:00
2025-08-21 13:14:10 +09:00
2025-07-07 23:23:24 +09:00
2025-07-20 10:31:30 +09:00
2024-04-24 01:15:34 +09:00
2024-04-24 01:15:34 +09:00
2025-10-21 11:11:31 +09:00
2025-07-04 23:47:34 +09:00
2025-04-30 14:33:52 +09:00
2025-07-31 10:53:39 +09:00
2025-07-23 12:27:26 +09:00
2025-05-07 15:01:23 +09:00
2023-02-28 17:11:41 +09:00
2025-08-23 19:45:53 +03:00
2025-07-07 21:18:48 +09:00
2023-04-20 15:36:28 +09:00
2021-08-05 18:08:38 -04:00
2023-03-02 15:01:12 +09:00
2022-04-23 08:06:17 +09:00
2025-10-22 10:57:47 +03:00
2025-07-20 10:31:30 +09:00
2024-05-08 12:52:33 +09:00
2024-05-08 12:52:33 +09:00
2022-08-15 02:36:46 +09:00
2021-10-17 21:55:34 -05:00
2022-08-15 04:24:58 +09:00
2022-08-15 04:24:58 +09:00
2022-08-15 04:24:58 +09:00
2022-08-15 04:24:58 +09:00
2022-08-15 04:24:58 +09:00
2024-06-22 16:18:34 +09:00
2023-03-01 18:06:50 +09:00
2023-03-05 05:26:55 +09:00
2021-02-20 20:37:25 -05:00
2025-07-25 10:49:05 +09:00
2021-02-20 20:37:25 -05:00
2025-10-22 10:57:47 +03:00
2022-02-13 17:56:08 -05:00
2021-04-18 14:44:36 -04:00
2022-10-18 03:26:29 +09:00
2025-10-22 10:57:47 +03:00
2025-07-25 14:53:03 +02:00
2025-07-25 10:50:17 +09:00
2025-08-23 19:45:53 +03:00
2021-02-25 22:50:48 -05:00
2021-02-25 22:50:48 -05:00
2021-02-25 22:50:48 -05:00
2021-04-21 11:17:00 +02:00
2021-05-21 19:19:34 -04:00
2023-03-01 18:06:50 +09:00
2025-10-22 10:57:47 +03:00
2021-05-07 20:50:03 -04:00
2025-10-28 13:19:12 +09:00
2025-07-12 22:43:47 +09:00
2025-04-17 20:01:43 +09:00
2025-07-17 13:43:32 +09:00
2025-10-05 11:14:33 +09:00
2023-03-08 19:01:33 +00:00
2024-01-11 17:48:56 +09:00
2024-11-10 00:15:21 +09:00
2025-04-17 20:01:43 +09:00
2025-06-30 23:56:34 +09:00
2025-07-20 14:11:36 +09:00
2025-10-29 19:09:37 +09:00
2023-11-08 20:41:23 +08:00
2025-03-31 18:49:08 +09:00
2022-03-11 22:01:06 -06:00
2025-06-30 19:09:05 +09:00
2025-06-23 09:41:21 +09:00
2023-12-24 04:03:20 +08:00
2023-11-23 15:40:57 +08:00
2025-03-28 11:26:29 +09:00
2025-08-23 21:53:29 +03:00
2023-12-24 03:56:28 +08:00
2025-03-30 23:01:20 +08:00
2023-03-05 16:07:25 +09:00
2023-11-23 15:57:39 +08:00
2025-03-28 11:26:29 +09:00
2025-10-22 10:57:47 +03:00
2025-08-01 22:16:32 +09:00
2023-11-23 16:21:42 +08:00
2025-04-14 16:55:00 +09:00
2025-09-21 19:33:41 +09:00
2025-03-26 02:24:01 -05:00
2025-03-20 14:35:04 +09:00
2025-08-23 23:21:19 +03:00
2025-03-25 19:05:12 -05:00
2025-06-30 19:07:58 +09:00
2025-07-09 19:03:53 +09:00
2023-11-30 19:53:37 +08:00
2025-10-22 21:09:42 +09:00
2025-10-31 00:08:04 +09:00
2025-09-16 21:53:25 +09:00
2025-07-25 10:47:20 +09:00
2025-09-07 17:08:35 +09:00
2024-03-13 15:22:57 +09:00
2023-11-30 20:01:48 +08:00
2025-09-16 21:49:54 +09:00
2025-07-10 08:36:37 +09:00
2025-07-14 14:20:28 +09:00
2025-08-04 20:08:17 +09:00
2025-07-12 19:18:08 +09:00
2024-05-17 14:02:40 +09:00
2025-10-29 19:09:37 +09:00
2025-08-23 23:21:19 +03:00
2025-07-08 23:49:57 +09:00
2024-06-24 19:00:54 +09:00
2025-09-11 22:42:19 +09:00
2023-01-17 20:36:07 -05:00
2025-07-01 19:05:29 +09:00
2025-07-08 19:46:26 +09:00
2021-11-28 20:51:32 +08:00
2021-11-29 21:03:02 +08:00
2025-07-25 19:04:49 +09:00
2025-08-31 11:08:20 +03:00
2023-11-30 20:27:46 +08:00
2025-07-11 08:36:34 +09:00
2025-07-21 00:54:14 +09:00
2023-11-30 20:48:58 +08:00
2023-04-02 13:42:27 +00:00
2025-07-14 14:21:59 +09:00
2022-07-18 03:54:49 +09:00
2025-07-25 16:07:59 +02:00
2025-08-05 17:53:34 +09:00
2025-10-22 10:57:47 +03:00
2022-08-09 03:36:26 +09:00
2023-04-02 13:51:18 +00:00
2025-09-11 14:05:04 +09:00
2023-02-28 17:11:41 +09:00
2023-02-28 17:11:41 +09:00
2025-08-31 11:09:34 +03:00
2021-11-13 19:26:10 -08:00
2023-11-30 21:01:17 +08:00
2025-10-23 19:53:58 +09:00
2025-02-13 14:11:01 +09:00
2025-07-25 10:43:16 +09:00
2025-09-01 11:19:00 +03:00
2023-11-30 21:06:09 +08:00
2025-07-21 14:42:18 +09:00
2025-07-16 13:37:18 +03:00
2025-07-16 13:37:18 +03:00
2025-10-22 11:02:36 +03:00
2025-09-08 13:48:51 +09:00
2023-06-01 15:29:16 +09:00
2025-08-31 12:23:58 +03:00
2025-09-21 19:33:41 +09:00
2022-01-23 21:49:43 -06:00
2025-04-30 14:33:52 +09:00
2025-08-31 12:37:48 +03:00
2025-08-20 14:16:19 +09:00
2025-09-15 21:36:11 +09:00
2025-07-06 23:08:07 +09:00
2024-07-29 19:53:44 +09:00
2025-10-20 22:46:46 +09:00
2025-04-11 11:11:12 +09:00
2025-10-22 21:09:42 +09:00
2025-10-22 20:26:19 +09:00
2022-08-14 23:08:08 +09:00
2025-10-22 10:57:47 +03:00
2023-04-06 00:37:04 +09:00
2025-09-11 14:05:04 +09:00
2025-04-30 14:33:52 +09:00
2025-04-30 14:33:52 +09:00
2025-08-04 20:08:35 +09:00
2025-09-16 09:35:08 +09:00
2025-03-19 21:06:03 -05:00
2025-08-31 11:47:32 +03:00
2023-02-21 18:11:19 +09:00
2023-04-06 00:37:49 +09:00
2025-07-08 20:13:52 +09:00
2024-04-19 16:44:23 +09:00
2025-08-24 00:44:32 +03:00
2025-04-21 21:12:12 -07:00
2024-03-11 22:04:35 +09:00
2021-02-21 18:47:55 -05:00
2025-10-22 10:57:47 +03:00
2024-06-22 16:18:34 +09:00
2022-08-21 15:23:51 +09:00
2025-10-29 23:01:04 +09:00
2025-03-12 09:47:34 +09:00
2022-05-30 07:36:08 +09:00
2025-08-21 13:14:10 +09:00
2025-09-16 21:53:25 +09:00
2023-03-02 05:56:34 +09:00
2025-07-01 10:59:41 +09:00
2025-08-31 11:50:04 +03:00
2022-09-13 21:45:26 +09:00
2022-08-15 04:24:58 +09:00
2025-09-07 16:10:22 +09:00
2024-06-21 22:37:15 +09:00
2025-08-31 10:34:57 +03:00
2025-08-31 10:35:23 +03:00
2023-04-06 00:38:36 +09:00
2025-04-21 21:11:42 -07:00
2025-09-07 16:05:54 +09:00
2025-07-14 14:24:00 +09:00
2025-10-22 10:57:47 +03:00
2025-09-11 22:42:19 +09:00
2025-10-22 10:57:47 +03:00
2021-04-17 22:27:51 -04:00
2025-05-07 15:01:23 +09:00
2022-10-25 20:48:14 +09:00
2025-08-23 22:09:11 +03:00
2025-10-26 17:33:49 +09:00
2025-07-17 13:42:38 +09:00
2022-08-15 04:24:58 +09:00
2021-11-28 20:51:32 +08:00
2023-04-06 00:39:38 +09:00
2024-04-24 01:15:34 +09:00
2025-03-19 21:06:03 -05:00
2025-08-20 14:08:05 +09:00
2025-09-11 14:05:04 +09:00
2024-07-29 19:53:44 +09:00
2025-08-23 19:25:28 +03:00
2023-11-09 14:59:59 +08:00
2021-04-22 12:35:43 -04:00
2025-07-12 01:10:30 +09:00
2025-08-23 19:44:08 +03:00
2024-06-22 15:24:42 +09:00
2025-09-11 22:42:19 +09:00
2024-05-09 15:20:38 +09:00
2025-08-26 21:49:26 +09:00
2025-08-04 20:09:36 +09:00
2025-07-25 15:41:37 +02:00
2025-08-04 20:09:36 +09:00
2021-04-25 12:59:12 -04:00
2025-04-14 16:56:22 +09:00
2023-09-01 13:55:28 +09:00
2023-06-08 13:46:49 +03:00
2025-04-28 12:29:21 +09:00
2024-11-14 23:06:53 -06:00
2025-03-19 21:06:03 -05:00
2025-10-22 12:04:01 +03:00
2025-08-05 23:18:10 +09:00
2025-08-31 11:58:21 +03:00
2025-08-31 11:59:46 +03:00
2023-03-26 12:27:58 +09:00
2025-11-01 18:30:03 +09:00
2023-06-01 15:29:16 +09:00
2023-04-19 16:05:18 +00:00
2023-03-25 13:22:39 +09:00
2025-09-11 14:05:04 +09:00
2025-07-25 10:50:17 +09:00
2025-10-22 10:57:47 +03:00
2025-04-21 20:48:13 -07:00
2025-07-17 00:03:25 +09:00
2025-09-21 19:33:41 +09:00
2025-02-25 08:41:54 +09:00
2022-07-27 14:43:47 +09:00
2025-03-25 19:05:12 -05:00
2025-03-26 23:12:21 -05:00
2024-12-03 16:28:32 -06:00
2025-07-15 03:12:23 +09:00
2025-07-04 10:09:06 +09:00
2025-08-31 12:01:32 +03:00
2025-07-17 13:44:18 +09:00
2022-08-14 23:08:08 +09:00
2025-09-11 22:43:11 +09:00
2025-04-21 21:11:42 -07:00
2025-09-21 19:33:41 +09:00
2022-06-22 22:32:22 -04:00
2025-07-20 10:31:58 +09:00
2025-06-29 02:14:22 +09:00
2022-08-14 23:08:08 +09:00
2021-11-28 20:51:32 +08:00
2025-07-15 21:27:05 +09:00
2025-09-15 21:36:11 +09:00
2024-04-26 01:39:02 +09:00
2025-10-22 10:57:47 +03:00
2025-09-21 19:33:41 +09:00
2025-03-25 19:05:12 -05:00
2025-01-17 19:44:06 +09:00
2025-03-30 14:20:17 +09:00
2023-04-25 02:39:54 +09:00
2023-03-25 19:45:55 +09:00
2025-10-29 23:01:04 +09:00
2025-09-11 14:05:04 +09:00
2025-07-26 00:42:22 +09:00
2025-09-11 22:42:19 +09:00
2025-06-30 19:07:58 +09:00
2025-09-21 19:33:41 +09:00
2024-03-22 14:59:19 +09:00
2025-03-26 23:12:21 -05:00
2025-09-21 19:33:41 +09:00
2025-06-22 18:11:30 +09:00
2022-10-02 17:01:16 +02:00
2021-02-15 21:39:43 -06:00
2025-03-28 11:26:29 +09:00
2025-09-21 19:33:41 +09:00
2022-08-13 17:20:13 +09:00
2024-04-20 03:00:27 +09:00
2025-08-01 22:12:11 +09:00
2025-10-20 22:46:46 +09:00
2021-05-16 13:50:34 -04:00
2022-04-26 22:26:38 -04:00
2025-06-24 16:58:27 +09:00
2025-10-22 10:57:47 +03:00
2025-06-22 22:36:13 +09:00
2025-07-23 12:27:56 +09:00
2025-09-11 14:05:04 +09:00
2024-04-19 04:56:25 +09:00
2022-02-13 19:07:02 -05:00
2022-08-23 04:46:07 +09:00
2024-04-20 03:00:27 +09:00
2022-08-23 15:54:42 +09:00
2025-06-23 23:53:57 +09:00
2025-10-23 17:28:53 +09:00
2025-03-19 21:06:03 -05:00
2022-08-14 23:08:08 +09:00
2025-02-24 13:21:02 +09:00
2025-07-25 10:50:41 +09:00
2025-07-16 13:37:18 +03:00
2025-07-14 14:26:08 +09:00
2022-08-09 05:59:02 +09:00
2021-08-31 23:53:05 +09:00
2025-06-27 10:32:26 +09:00
2025-10-22 10:57:47 +03:00
2025-08-24 00:17:50 +03:00
2025-01-17 18:04:25 -08:00
2025-07-12 20:44:34 +09:00
2025-07-12 20:44:34 +09:00
2025-07-12 20:44:34 +09:00
2025-08-24 00:17:50 +03:00
2025-08-31 12:13:09 +03:00
2024-03-11 15:01:37 +09:00
2025-10-29 23:01:04 +09:00
2023-02-20 23:51:11 +09:00
2022-08-09 04:31:57 +09:00
2022-08-09 04:31:57 +09:00
2023-06-14 01:53:08 +03:00
2022-08-09 04:31:57 +09:00
2022-08-07 16:31:38 +09:00
2025-08-31 12:14:40 +03:00
2025-07-25 15:47:32 +02:00
2025-07-12 20:44:34 +09:00
2023-03-02 04:41:15 +09:00
2021-10-17 21:55:34 -05:00
2025-09-16 21:58:36 +09:00
2022-07-19 01:35:32 +09:00
2025-07-25 10:49:05 +09:00
2025-07-25 10:49:05 +09:00
2025-04-21 08:48:38 +09:00
2025-07-20 14:11:36 +09:00
2025-07-20 10:33:22 +09:00
2025-04-21 16:54:00 +09:00
2025-04-15 16:24:10 +09:00
2025-08-31 12:43:52 +03:00
2022-04-18 22:50:55 +08:00
2024-06-22 15:24:42 +09:00
2025-08-21 13:15:39 +09:00
2025-08-21 13:15:39 +09:00
2025-09-11 22:42:19 +09:00
2022-07-18 04:38:26 +09:00
2025-09-21 19:33:41 +09:00
2025-08-06 10:31:55 +09:00
2022-08-09 03:56:53 +09:00
2025-10-23 17:28:53 +09:00
2025-03-26 23:12:21 -05:00
2025-02-26 00:10:24 -06:00
2021-02-15 15:07:39 -05:00
2021-05-21 19:19:34 -04:00
2023-06-01 15:29:16 +09:00
2021-05-26 21:04:55 -04:00
2021-05-21 19:19:34 -04:00
2021-05-26 21:04:55 -04:00
2021-05-26 21:04:55 -04:00
2021-05-21 19:19:34 -04:00
2023-04-20 15:36:28 +09:00
2021-08-05 18:08:38 -04:00
2021-05-21 19:19:34 -04:00