Skip to content

Commit 9a7ecd8

Browse files
committed
[GR-31080]Move the docs sources in Graal/docs space by preserving website pages build.
PullRequest: graalpython/1798
2 parents 60a0eac + fbdb937 commit 9a7ecd8

File tree

7 files changed

+47
-5
lines changed

7 files changed

+47
-5
lines changed

docs/user/FAQ.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## Frequently Asked Questions
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: FAQ
5+
permalink: /reference-manual/python/FAQ/
6+
---
7+
# Frequently Asked Questions
28

39
### Does module/package XYZ work on GraalVM's Python runtime?
410

docs/user/Interoperability.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Interoperability
5+
permalink: /reference-manual/python/Interoperability/
6+
---
17
# Interoperability
28

39
## The Polyglot API
@@ -182,7 +188,7 @@ print(java.instanceof(my_list, ArrayList))
182188
# prints True
183189
```
184190

185-
See [Polyglot Programming](https://www.graalvm.org/docs/reference-manual/polyglot-programming/) and [Embed Languages](https://www.graalvm.org/reference-manual/embed-languages/) for more information about interoperability with other programming languages.
191+
See [Polyglot Programming](https://www.graalvm.org/reference-manual/polyglot-programming/) and [Embed Languages](https://www.graalvm.org/reference-manual/embed-languages/) for more information about interoperability with other programming languages.
186192

187193
## The Behaviour of Types
188194

docs/user/Jython.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Jython Compatibility
5+
permalink: /reference-manual/python/Jython/
6+
---
17
# Jython Migration Guide
28

39
Most Jython code that uses Java integration will be based on a
@@ -34,7 +40,7 @@ For example, this will work:
3440
import java.lang as lang
3541
```
3642

37-
But this will not:
43+
This will not work:
3844
```python
3945
import javax.swing as swing
4046
from javax.swing import *
@@ -184,4 +190,4 @@ There are no APIs particular to Python that are exposed, and everything is done
184190

185191
It is important to note that as long as your application is executed on GraalVM with the Python language installed,
186192
you can embed Python in your programs.
187-
For more details, refer to the [Embed Languages](https://www.graalvm.org/docs/reference-manual/embed-languages/#Function_Python) guide.
193+
For more details, refer to the [Embed Languages](https://www.graalvm.org/reference-manual/embed-languages/) guide.

docs/user/Packages.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Installing Supported Packages
5+
permalink: /reference-manual/python/Packages/
6+
---
17
# Installing Supported Packages
28

39
## Create a Virtual Environment
@@ -23,7 +29,7 @@ graalpython -m ginstall --help
2329
```
2430

2531
As a slightly more exciting example, try:
26-
```sehll
32+
```shell
2733
graalpython -m ginstall install numpy
2834
```
2935

docs/user/ParserDetails.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Python Code Parsing and pyc Files
5+
permalink: /reference-manual/python/ParserDetails/
6+
---
17
# Python Code Parsing and pyc Files
28

39
This guide elaborates on how Python files are parsed on the GraalVM Python runtime.

docs/user/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Python Reference
5+
permalink: /reference-manual/python/
6+
---
17
# GraalVM Python Runtime
28

39
GraalVM provides a Python 3.8 compliant runtime.

docs/user/Tooling.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
layout: docs-experimental
3+
toc_group: python
4+
link_title: Tooling Support for Python
5+
permalink: /reference-manual/python/Tooling/
6+
---
17
# Tooling Support for Python
28

39
GraalVM's Python runtime is incomplete and cannot launch the standard Python debugger `pdb`.

0 commit comments

Comments
 (0)