Skip to content

Commit bc786ef

Browse files
committed
[hotfix] Update changelog, hotfix for the builtin help which hangs otherwise
PullRequest: graalpython/293
2 parents 5fe3e20 + 24fca5f commit bc786ef

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
This changelog summarizes major changes between GraalVM versions of the Python
44
language runtime. The main focus is on user-observable behavior of the engine.
55

6+
## Version 1.0.0 RC10
7+
8+
* Improve performance of C API upcalls
9+
* Improve performance of classmethods, staticmethods, `globals()`, and `locals()`
10+
* Improve performance of various string and bytes operations
11+
* Initial support for the `_thread` builtin module (actual multi-threading is still disabled, the API defaults to a dummy implementation)
12+
* Implement the `zipimporter` module
13+
* Support assignment to `object.__class__`
14+
* Use the new Truffle filesystem API to get/set the current working directory
15+
* Attempt our best to report side-effects in KEY_INFO
16+
* The KEYS message now responds with attributes and methods, never dict keys
17+
* Support the `input` builtin
18+
* Add DEBUG launcher options for performance debugging
19+
* Ensure context isolation for file descriptors and child PIDs
20+
* Fix passing custom locals and globals through `exec` and `eval`
21+
* Fixes to builtin `help`
22+
623
## Version 1.0.0 RC9
724

825
* Support `help` in the builtin Python shell

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,11 @@ boolean isATTY(int fd) {
986986
case 1:
987987
case 2:
988988
// TODO: XXX: actually check
989-
return consoleCheck();
989+
// TODO: We can only return true here once we
990+
// have at least basic subprocess module support,
991+
// because otherwise we break the REPL help
992+
// return consoleCheck();
993+
return false;
990994
default:
991995
return false;
992996
}

0 commit comments

Comments
 (0)