Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VRE Language
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
virtmat-tools
VRE Language
Merge requests
!341
Resolve "Problems with background I/O"
代码
评审变更
检出分支
下载
补丁
文本差异
Merged
Resolve "Problems with background I/O"
440-problems-with-background-i-o
into
master
Overview
1
Commits
4
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Merged
Ivan Kondov
requested to merge
440-problems-with-background-i-o
into
master
2 weeks ago
Overview
1
Commits
4
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Expand
Closes
#440 (closed)
0
0
Merge request reports
Viewing commit
fef1c100
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
fef1c100
fix printing the stack trace with python 3.9
· fef1c100
Ivan Kondov
authored
2 weeks ago
src/virtmat/language/utilities/textx.py
+
1
−
1
Options
@@ -142,7 +142,7 @@ def display_exception(func):
return
func
(
*
args
,
**
kwargs
)
except
Exception
as
err
:
print
(
'
\n
'
,
file
=
sys
.
stderr
)
traceback
.
print_exception
(
err
,
file
=
sys
.
stderr
)
traceback
.
print_exception
(
*
sys
.
exc_info
()
,
file
=
sys
.
stderr
)
print
(
'
\n
'
,
file
=
sys
.
stderr
)
raise
err
return
decorator
Loading