MercurialとPython3。その2

MercurialとPython3。のところではその時点でのステータスを拾ってきていたんですが、どうやら編集されているようです。
1. Status
Mercurial 5.0 is the first release that officially has beta support for Python 3. Supported Python 3 versions are 3.5, 3.6, and 3.7. Python 3.8 mostly works, but there are a few known incompatibilities. Mercurial with Python 3 on Windows is not yet widely tested and there are more known issues on Windows compared to Linux, macOS, and other UNIX-like platforms.

It is the project policy for Mercurial and its core extensions to be compatible with Python 3. Over 99% of tests pass with Python 3 and test regressions are treated seriously.

Many 3rd party extensions have not yet been ported to work with Python 3.

Mercurial 5.0 は公式に Python 3 をベータサポートする最初のリリースです。サポートされる Python 3 のバージョンは 3.5、3.6 および 3.7 です。Python 3.8 はほとんど動きますが、いくつかの既知の適合性の不一致があります。Windows での Python 3 の Mercurial はまだ十分にテストされておらず、Linux、macOS およびタの UNIXライクなプラットフォームに比べて多くの既知の問題があります。

Mercurial とそのコアエクステンションが Python 3 と適合していることはプロジェクトのポリシーです。Python 3 では 99% を超えるテストをパスし、回帰テストは慎重に行われています。

多くのサードパーティエクステンションはまだ Python 3 で動くようにポーティングされてはいません。

らしいです。
前のエントリでは 5月1日リリースという目標だったようですが、さて。

0 件のコメント:

コメントを投稿

Windowsでシンボリックリンクを試してみる。

きっかけは、1つのファイルを別の名前で起動したら違う動きになるようなスクリプトを書く、でした。  busybox なんかでは、同じ実行形式ファイルの名前を、lsにすればlsと同じ、cpとすればcpと同じ動作をするようにしてますが、Pythonスクリプトでそれと同じように argv...