You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,17 @@
3
3
This changelog summarizes major changes between GraalVM versions of the Python
4
4
language runtime. The main focus is on user-observable behavior of the engine.
5
5
6
+
## Version 1.0.0 RC14
7
+
8
+
* Mark a subset of the Graal Python launcher options as "stable". All other options are subject to change and need to be unlocked explicitly on the commandline.
9
+
* Automatically install pip when creating a venv. The socket and ssl libraries are still not functional, so pip can only install from local sources or wheels.
10
+
* Update the standard library to Python 3.7.0 from 3.6.5.
11
+
* Support the `-I` flag to ignore the user environment and not add the working directory to `sys.path`
12
+
* Fix an error preventing usage of the memtracer tool. If an object raised an exception in it's `__repr__` method, it would abort the execution.
13
+
* Fix issues around not being able to modify function defaults, keyword defaults, or re-defining a function with a different closure.
14
+
* Fix continuation prompt in the interactive Python shell when an incomplete statement was typed. Before it raised and ignored a SyntaxError.
15
+
* Fix frame restarting of Python functions in the Chrome debugger. Before, functions with closures would have their cells accidentally cleared.
16
+
6
17
## Version 1.0.0 RC13
7
18
8
19
* Support marshal.dumps and marshal.loads for code objects and some other built-in objects
0 commit comments