Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit039af81

Browse files
committed
fix syntax highlight, category and add permalink
1 parentbc5828c commit039af81

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

‎_layouts/home.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<!-- list of posts where category is "featured" -->
8181
<ulclass="list-unstyled">
8282
{%- for post in site.categories.featured limit:3 -%}
83-
<liclass="mt-1"><ahref="{{ post.url |relative_url }}"> {{ post.title | escape }}</a></li>
83+
<liclass="mt-1"><ahref="{{ post.permalink |permalink }}"> {{ post.title | escape }}</a></li>
8484
{%- endfor -%}
8585
</ul>
8686
</div>

‎_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
layout:post
33
title:"How to contribute to RustPython by CPython unittest"
44
date:2020-04-05 01:45:00 +0900
5-
categories:guideline, featured
5+
categories:[guideline, featured]
6+
permalink:guideline/2020/04/04/how-to-contribute-by-cpython-unittest.html
67
---
78

89
At the very end of 2019, we finally reached one of the short-term goals: CPython unittest support. Due to this enhancement, finding CPython compatibility is easier than before.
@@ -20,9 +21,7 @@ Let's find an incompatibility issue and fix it.
2021

2122
Here is a quick tip to run single unittest file.
2223

23-
```sh
24-
$ RUSTPYTHONPATH=Lib cargo run --release Lib/test/test_unicode.py
25-
```
24+
`$ RUSTPYTHONPATH=Lib cargo run --release Lib/test/test_unicode.py`
2625

2726
##Add a new unittest file
2827
Because CPython unittest is not perfectly working in RustPython, we are doing this one by one with editings.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp