Skip to content

Releases: oracle/graalpython

Graal Python - GraalVM Community Edition 1.0 RC11

15 Jan 09:43
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting. The main focus of development right now is to get NumPy, SciPy, and related libraries working.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Changes in RC11:

  • Add the ginstall custom module to install known packages such as NumPy and setuptools using graalpython -m ginstall
  • Add support for the yield from syntax
  • Add more built-in methods to the time module
  • Add support for the standard zipfile module
  • Add the built-in _cvs module
  • Improve performance of various C API operations
  • Improve performance of os.scandir and functions that build on it (such as glob)
  • Fix various performance regressions introduced in RC10
  • Fix [] access with non-integer keys for array-like polyglot objects
  • Fix the implementation of standard streams so they are cooked, buffered streams
  • Fix reporting that we have a TTY console in a conservative way if we are run through the Python launcher
  • Remove exposure of internal languages through polyglot.eval

Graal Python - GraalVM Community Edition 1.0 RC10

05 Dec 18:13
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Changes in RC10:

  • Improve performance of C API upcalls
  • Improve performance of classmethods, staticmethods, globals(), and locals()
  • Improve performance of various string and bytes operations
  • Initial support for the _thread builtin module (actual multi-threading is still disabled, the API defaults to a dummy implementation)
  • Implement the zipimporter module
  • Support assignment to object.__class__
  • Use the new Truffle filesystem API to get/set the current working directory
  • Attempt our best to report side-effects in KEY_INFO
  • The KEYS message now responds with attributes and methods, never dict keys
  • Support the input builtin
  • Add DEBUG launcher options for performance debugging
  • Ensure context isolation for file descriptors and child PIDs
  • Fix passing custom locals and globals through exec and eval
  • Fixes to builtin help

Graal Python - GraalVM Community Edition 1.0 RC9

05 Nov 13:51
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Changes:

  • Support help in the builtin Python shell
  • Add readline to enable history and autocompletion in the Python shell
  • Add support for the -q, -E, -s, and -S Python launcher flags
  • Improve display of foreign array-like objects
  • Improve support for string and bytes regular expressions using our TRegex engine
  • Support loading site-packages installed with easy_install
  • Initial support for the binascii module

Graal Python - GraalVM Community Edition 1.0 RC8

19 Oct 19:14
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

New features in RC8:

  • Support help in the builtin Python shell
  • Add readline to enable history and autocompletion in the Python shell
  • Improve display of foreign array-like objects

Graal Python - GraalVM Community Edition 1.0 RC7

03 Oct 13:34
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Changes since RC6:

Graal Python - GraalVM Community Edition 1.0 RC6

03 Sep 14:44
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Changes since RC5:

  • Support regular expression patterns built from bytes by using CPython's sre module as a fallback engine to our own
  • Support LLVM 5+ for C extension modules
  • Introduce native sequence storage so that e.g. Python bytes exposed to C can be mutated
  • Introduce lazy string concatenation to significantly speed up benchmarks where strings are concatenated repeatedly
  • C-API improvements to support more scikit-learn code
  • Fix our distinction between builtin functions, functions, and methods to make the classes for builtin functions equivalent to CPython
  • Improve set, frozenset, and dict support
  • Attach Python exceptions as cause to ImportErrors raised for C extension modules
  • Update standard library to CPython 3.6.5
  • Support more code object attributes
  • Support constant type ids for objects that are interned on CPython
  • Add collections.deque
  • Document how to contribute
  • Improve efficiency of generators
  • Enable re-use of ASTs in multiple Contexts in the same Engine

Graal Python - GraalVM Community Edition 1.0 RC5

03 Aug 12:44
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Graal Python - GraalVM Community Edition 1.0 RC4

18 Jul 16:34
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Graal Python - GraalVM Community Edition 1.0 RC3

02 Jul 13:23
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation for GraalVM. Currently, it is in the early stages of development and as such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.

More information is available on the GraalVM website: http://www.graalvm.org/docs/reference-manual/languages/python/

Graal Python - GraalVM Community Edition 1.0 RC2

06 Jun 11:23
Compare
Choose a tag to compare

Graal.Python is a Python 3 implementation in the early stages of development. As such, it is not ready for any serious applications beyond simple use cases and scripting.

The Python language components can be installed in GraalVM using the gu utility.