Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
dtk
dtk
Commits
17989ebe
Commit
17989ebe
authored
Jan 24, 2019
by
NICLAUSSE Nicolas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add isatty method in python redirector
parent
09bc3a04
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
CHANGES.md
CHANGES.md
+2
-0
CMakeLists.txt
CMakeLists.txt
+1
-1
src/dtkScript/dtkScriptInterpreterPython.cpp
src/dtkScript/dtkScriptInterpreterPython.cpp
+2
-0
No files found.
CHANGES.md
View file @
17989ebe
# ChangeLog
## version 1.7.1 - 2019-01-24
-
add isatty method in python redirector
## version 1.7.0 - 2019-01-24
-
add clear method in factory
-
add option to replace plugin in factory
...
...
CMakeLists.txt
View file @
17989ebe
...
...
@@ -24,7 +24,7 @@ project(dtk)
set
(
dtk_VERSION_MAJOR 1
)
set
(
dtk_VERSION_MINOR 7
)
set
(
dtk_VERSION_PATCH
0
)
set
(
dtk_VERSION_PATCH
1
)
set
(
dtk_VERSION
${
dtk_VERSION_MAJOR
}
.
${
dtk_VERSION_MINOR
}
.
${
dtk_VERSION_PATCH
}
)
...
...
src/dtkScript/dtkScriptInterpreterPython.cpp
View file @
17989ebe
...
...
@@ -37,6 +37,8 @@ static const QString dtkScriptInterpreterPythonRedirector_declare =
" self.data+= stuff
\n
"
" def flush(self):
\n
"
" pass
\n
"
" def isatty(self):
\n
"
" return False
\n
"
" def reset(self):
\n
"
" self.data = ''
\n
"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment