Skip to content

Commit

Permalink
Resolve #70: Use -u flag for Python to force stdin, stdout and stde…
Browse files Browse the repository at this point in the history
…rr to be totally unbuffered
  • Loading branch information
formulahendry committed Aug 3, 2018
1 parent 9ce19bf commit 1547616
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 0.9.4 (2018-08-03)
* [#70](https://github.com/formulahendry/vscode-code-runner/issues/70): Use `-u` flag for Python to force stdin, stdout and stderr to be totally unbuffered.

### 0.9.3 (2018-03-19)
* [#273](https://github.com/formulahendry/vscode-code-runner/issues/273): Could not run file without extension

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"name": "code-runner",
"displayName": "Code Runner",
"description": "Run C, C++, Java, JS, PHP, Python, Perl, Ruby, Go, Lua, Groovy, PowerShell, CMD, BASH, F#, C#, VBScript, TypeScript, CoffeeScript, Scala, Swift, Julia, Crystal, OCaml, R, AppleScript, Elixir, VB.NET, Clojure, Haxe, Objective-C, Rust, Racket, AutoHotkey, AutoIt, Kotlin, Dart, Pascal, Haskell, Nim, D",
"version": "0.9.3",
"version": "0.9.4",
"publisher": "formulahendry",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Languages",
"Programming Languages",
"Other"
],
"keywords": [
Expand Down Expand Up @@ -117,7 +117,7 @@
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "python",
"python": "python -u",
"perl": "perl",
"perl6": "perl6",
"ruby": "ruby",
Expand Down

0 comments on commit 1547616

Please sign in to comment.