-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
readme_link | ||
self | ||
src/Differences from CST-Java.md | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Differences from CST-JAVA | ||
|
||
CST-Python is a port of the CST-Java to Python. However, the intention is only to port the existing elements in cst.core and the Ideas functionalities, to enable the creation of basic CST applications and interaction with other architectures in Java. | ||
|
||
At this time, the following elements are not implemented: | ||
- Coalition | ||
- CodeRack | ||
- CodeletContainer | ||
- MemoryBuffer | ||
- MemoryContainer | ||
- REST functionalities | ||
- Ideas functionalities | ||
|
||
Other differences between the versions: | ||
- All get and set methods have been replaced by properties with the name of the attribute you want to access, except in the case of methods coming from interfaces and abstract classes and their implementations. | ||
- Interfaces have been converted to abstract classes. | ||
- Synchronization features have not been implemented, as the GIL prevents most of these issues from occurring. |