Files
RustPython/Lib
Noah 97b8a7bf32 Merge pull request #1621 from RustPython/coolreader18/io-update
Update the io module with a bunch of methods
2019-12-04 13:08:14 -06:00
..
2019-11-22 22:49:11 -06:00
2019-11-12 16:03:06 +02: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
2019-08-16 15:15:33 +09:00
2019-12-01 17:49:29 -06:00
2019-10-27 19:25:20 +02:00
2019-05-08 16:32:09 +03:00
2019-10-06 17:01:13 +09:00
2019-09-13 01:27:23 -05:00
2019-05-11 17:17:00 +03:00
2019-07-10 22:16:42 -05: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-11-23 11:20:42 -06: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
2019-05-04 11:00:36 +03:00
2019-10-02 22:09:31 -05:00
2019-06-22 13:13:34 +02:00
2019-11-07 00:04:51 -06:00
2019-06-29 14:44:39 +02: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.