Files
RustPython/Lib
Jeong YunWon 9a8f47b14e Merge pull request #1904 from RustPython/coolreader18/zipimport
Add zipimport to allow importing from zip files
2020-05-06 15:50:16 +09:00
..
2020-04-08 12:16:19 -05:00
2020-04-27 15:13:49 -05:00
2019-04-04 20:11:53 +13:00
2019-12-03 21:39:33 -06:00
2019-10-02 20:11:19 +00:00
2019-10-12 14:55:32 +09:00
2019-11-17 17:09:38 -06:00
2019-08-19 16:26:00 +09:00
2019-09-29 23:13:08 -05:00
2019-07-11 09:38:13 -05:00
2019-05-08 16:25:33 +03:00
2019-07-19 22:38:09 -05:00
2020-03-20 17:35:11 +02:00
2020-01-12 22:57:19 -06:00
2019-08-16 15:15:33 +09:00
2020-03-15 11:00:23 +09:00
2019-12-01 17:49:29 -06:00
2020-03-27 14:40:19 -05:00
2019-10-27 19:25:20 +02:00
2019-05-08 16:32:09 +03:00
2020-05-03 18:13:09 -05:00
2020-04-18 17:00:26 +03:00
2019-09-13 01:27:23 -05:00
2020-02-29 10:34:12 -06:00
2019-05-11 17:17:00 +03:00
2019-07-10 22:16:42 -05:00
2020-03-01 14:36:01 -06:00
2020-02-14 10:49:53 -06:00
2019-07-16 19:13:07 -05:00
2019-05-30 00:15:11 +03:00
2019-09-13 01:27:23 -05:00
2019-07-11 09:38:13 -05:00
2019-08-15 15:33:40 -05:00
2019-10-28 22:27:22 -05:00
2019-10-02 22:09:31 -05:00
2020-03-27 15:24:08 -05:00
2019-05-04 11:00:36 +03:00
2020-02-03 18:21:53 -06:00
2019-10-02 22:09:31 -05:00
2019-06-22 13:13:34 +02:00
2019-06-29 14:44:39 +02:00
2020-03-15 11:00:23 +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.