• R/O
  • SSH

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン58fbcdb582d0365c70a8e04c73a62cb1bed013fd (tree)
日時2024-02-19 02:14:40
作者Albert Mietus < albert AT mietus DOT nl >
コミッターAlbert Mietus < albert AT mietus DOT nl >

ログメッセージ

The summary of the (py,compiler) package structure is more-or-less done (DOC-only)

変更サマリ

差分

diff -r 3b89485a6359 -r 58fbcdb582d0 CCastle/DocParts/Design/01.Architecture/02.packages.rst
--- a/CCastle/DocParts/Design/01.Architecture/02.packages.rst Sun Feb 18 16:06:35 2024 +0100
+++ b/CCastle/DocParts/Design/01.Architecture/02.packages.rst Sun Feb 18 18:14:40 2024 +0100
@@ -78,12 +78,12 @@
7878 Packages that are optional, or where alternatives are available, are conveniently bundled in an extra ‘layer’:
7979
8080 - ``from castle.readers import typicalReader as reader``
81-- ``from castle.readers import mockReader as reader``
82- |BR|
83- Although some would vote for ``from castle.readers.mocks import reader`` for the latter.
81+- ``from castle.TESTDOUBLES.readers import mockReader as reader`` (selected option for mocks)
82+- ``from castle.readers import mockReader as reader`` (alternative, not preferred)
8483
85-The “dotted names” gives the user/sw-engineer an hint on which (sub)packages are available, and where it fits. Aside of
86-that, the name is not very important -- the functionality doesn't depend on it.
84+
85+The “dotted names” gives the user/SW-engineer an hint on which (sub)packages are available, and where it fits. Aside of
86+that, the name is not very important. During importing we can even *rename* a package, with the `as <name>` langage feature.
8787
8888 .. note:: The functionality does not depend on the name!
8989