Files
RustPython/Lib
Hanif Ariffin 65dcf1ce1c Updating test_math.py to CPython 3.12.9 (#5507)
* Fixed implementation against CPython 3.12.9 Lib/test/test_math.py tests
---------

Signed-off-by: Hanif Ariffin <hanif.ariffin.4326@gmail.com>
Co-authored-by: Jeong YunWon <jeong@youknowone.org>
2025-02-20 11:21:12 +09:00
..
2025-01-17 15:48:59 -08:00
2022-08-21 15:23:51 +09:00
2025-01-17 19:44:06 +09:00
2024-03-22 14:54:02 +09:00
2023-01-07 22:03:24 +02:00
2022-11-05 21:36:25 +02:00
2023-03-01 22:31:19 +09:00
2022-08-07 16:31:38 +09:00
2022-07-19 01:35:32 +09:00
2023-04-20 15:36:28 +09:00
2025-02-13 20:11:36 -08:00
2025-01-11 18:48:27 +09:00
2022-07-24 15:23:52 +09:00
2024-07-28 20:24:15 +09:00
2023-12-22 03:15:47 +08:00
2023-06-12 20:02:29 +03:00
2023-12-24 03:59:38 +08:00
2022-08-05 03:54:21 +09:00
2023-06-12 20:02:30 +03:00
2024-03-13 15:22:24 +09:00
2023-06-12 20:02:31 +03:00
2024-02-19 20:04:09 +08:00
2023-11-09 15:20:52 +08:00
2024-02-20 19:37:42 +08:00
2024-06-22 15:24:42 +09:00
2024-03-05 15:10:35 +09:00
2023-02-18 22:52:47 +09:00
2025-02-13 14:11:01 +09:00
2021-11-28 22:33:59 +01:00
2024-04-24 01:46:27 +09:00
2022-08-16 10:08:03 +09:00
2024-04-24 01:46:27 +09:00
2024-04-22 12:46:32 +09:00
2022-08-15 05:25:42 +09:00
2024-04-22 12:46:32 +09:00
2023-06-14 00:18:14 +03:00
2023-06-14 00:22:06 +03:00
2023-08-31 17:44:31 +09:00
2025-01-11 18:48:27 +09:00
2023-06-14 00:25:55 +03:00
2023-02-24 01:16:25 +09:00
2022-08-15 05:25:42 +09:00
2023-06-14 00:44:01 +03:00
2023-06-14 00:45:43 +03:00
2024-04-24 00:54:12 +09:00
2022-10-04 10:53:57 +09:00
2024-04-23 12:56:32 +09:00
2024-05-09 15:20:25 +09:00
2020-08-11 16:38:35 -03:00
2024-04-23 16:46:16 +09:00
2022-08-15 03:44:09 +09:00
2022-08-15 02:36:46 +09:00
2022-08-15 01:44:46 +09:00
2024-11-11 00:17:30 +09:00
2022-08-15 01:08:58 +09:00
2022-08-15 01:08:58 +09:00
2022-08-15 01:08:58 +09:00
2021-06-07 21:12:22 -04:00
2022-01-17 11:14:43 -05:00
2024-04-17 01:33:14 +09:00
2024-04-26 01:39:02 +09:00
2022-10-18 03:26:29 +09:00
2025-01-17 19:44:06 +09:00
2024-03-22 14:54:02 +09:00
2024-03-22 14:54:02 +09:00
2024-03-22 14:59:19 +09:00
2022-08-15 00:34:06 +09:00
2021-01-31 19:26:44 -05:00
2022-02-13 19:05:39 -05:00
2022-08-09 05:49:56 +09:00
2023-02-28 17:45:08 +09:00
2021-04-11 17:38:44 -05:00
2022-08-11 07:21:09 +09:00
2023-05-12 01:42:20 +09:00
2022-08-09 04:12:40 +09:00

Standard Library for RustPython

This directory contains all of the Python files that make up the standard library for RustPython.

Most of these files are copied over from the CPython repository (the 3.7 branch), with slight modifications to allow them to work under RustPython. The current goal is to complete the standard library with as few modifications as possible. Current modifications are just temporary workarounds for bugs/missing feature within the RustPython implementation.

The first big module we are targeting is unittest, so we can leverage the CPython test suite.