Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ A quick guide to developing the website locally
4. View the website locally
5. Make changes to the source
6. Refresh the browser page and the changes should be visible
7. Once your happy with the changes create a pull request
7. Once you're happy with the changes create a pull request

5 changes: 3 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.python.util.PythonInterpreter;
public class JythonHelloWorld {
public static void main(String[] args) {
try(PythonInterpreter pyInterp = new PythonInterpreter()) {
pyInterp.exec("print 'Hello Python World!'");
pyInterp.exec("print('Hello Python World!')");
}
}
}
Expand All @@ -29,4 +29,5 @@ Jython is embedded in lots of projects. See some from [MVNRepository](https://mv
- [Apache PIG](https://pig.apache.org/) - Use Jython to support user defined functions.
- [ImageJ](http://imagej.net) - Use Jython to provide scripted image processing.
- [GDA](http://www.opengda.org/) - Use Jython to script scientific experiments.
- [Robot Framework](http://robotframework.org/) - A generic test automation framework for acceptance testing and acceptance test-driven development (ATDD) which runs on Jython.
- [Robot Framework](http://robotframework.org/) - A generic test automation framework for acceptance testing and acceptance test-driven development (ATDD) which runs on Jython.

3 changes: 2 additions & 1 deletion news.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ title: News
Welcome to the new Jython website. The main improvements are:
- Redesign to fit the modern web, e.g. mobile responsive
- Move hosting to [GitHub pages](https://pages.github.com/). To allow easier maintenance and encourage community contribution
- Delivered over HTTPS.
- Delivered over HTTPS
- Content updated to reflect latest binary releases

### Jython 2.7.1 Final Released (July 2017)

Expand Down