You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown
+2
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ Let's find an incompatibility issue and fix it.
13
13
14
14
1. See `Lib/test` directory of the project. There are many `test_` prefixed files like `test_unicode.py`.
15
15
2. Try to open one of them. It might look just fine at a glance - but search for `TODO: RUSTPYTHON` in the files. There are tons of skipped, marked as an expected failure or commented out tests.
16
+
1. Alternatively, try looking at the [regression tests results]({% link pages/regression-tests-results.markdown %}) to find skipped or expected failure tests; some of them have
17
+
notes for a way to resolve the issue.
16
18
3. Choose one or two interesting bugs. Remove the test blocker - skip, expectedFailure or comments.
Copy file name to clipboardExpand all lines: index.markdown
+5-1
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,10 @@ Each of these implementations offer some benefits: Jython, for example, compiles
36
36
37
37
IronPython is well-integrated with .NET, which means IronPython can use the .NET framework and Python libraries or vice versa.
38
38
39
-
We want to unlock the same possibilities that Jython and IronPython enable, but for the Rust programming language. Then we want to do more. Using RustPython, we want to compile Python to WebAssembly and allow users to run their Python code natively in the browser.
39
+
We want to unlock the same possibilities that Jython and IronPython enable, but for the Rust programming language. In addition, thanks to Rusts' minimal runtime, we're able to compile RustPython to WebAssembly and allow users to run their Python code easily in the browser.
40
40
41
41
Check the "learn more" section for an explainer of all those jargon-y words, or read the blog for more in-depth technical discussion.
42
+
43
+
### Other Resources
44
+
45
+
-[CPython test compatibility]({% link pages/regression-tests-results.markdown %})
0 commit comments