From 0fe07dc4a24507a716ea4660fd47660c46f1a181 Mon Sep 17 00:00:00 2001 From: Ian Chen Date: Sun, 15 Aug 2021 22:44:21 +0800 Subject: [PATCH] fix type --- .../2020-04-05-how-to-contribute-by-cpython-unittest.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown b/_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown index b89240ce7..0f2eee221 100644 --- a/_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown +++ b/_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown @@ -23,7 +23,7 @@ Here's how you run a single unittest file: ` $ RUSTPYTHONPATH=Lib cargo run --release Lib/test/test_unicode.py` ## Add a new unittest file -Because CPython unittest doesn't work work perfectly in RustPython, we are adding test files one by one. Here's how: +Because CPython unittest doesn't work perfectly in RustPython, we are adding test files one by one. Here's how: 1. Download the CPython source code with `git clone https://github.com/python/cpython.git`. 2. Check out a specific version of CPython. We test against CPython 3.8, so the most recent release of 3.8 ([currently 3.8.7](https://www.python.org/doc/versions/)) is recommended. 3. Copy a file from CPython's `Lib/test`