Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a9ce70f3
Commit
a9ce70f3
authored
Nov 05, 1997
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(py-execute-region): Fixed small bug with queuing file for execution
in a py-shell. Temp files now get cleaned up.
parent
2518c679
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
Misc/python-mode.el
Misc/python-mode.el
+1
-2
No files found.
Misc/python-mode.el
View file @
a9ce70f3
...
...
@@ -1049,9 +1049,8 @@ is inserted at the end. See also the command `py-clear-queue'."
;; use the existing python shell
(
if
(
not
py-file-queue
)
(
py-execute-file
proc
file
)
(
push
file
py-file-queue
)
(
message
"File %s queued for execution"
file
))
)
(
push
file
py-file-queue
)
)
(
t
;; otherwise either run it synchronously in a subprocess
(
shell-command-on-region
start
end
py-python-command
outbuf
)
...
...
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