Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pyrte
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
OpenVMS
WASD
pyrte
Commits
6a246a729e12
Commit
6a246a729e12
authored
4 years ago
by
Jean-Francois Pieronne
Browse files
Options
Downloads
Patches
Plain Diff
v1.1.7 update
parent
ec5f995acf03
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/python/pyrte.c
+6
-3
6 additions, 3 deletions
src/python/pyrte.c
src/python/readmore.html
+2
-2
2 additions, 2 deletions
src/python/readmore.html
src/python/scripts/pyrte_test2.py
+1
-1
1 addition, 1 deletion
src/python/scripts/pyrte_test2.py
with
9 additions
and
6 deletions
src/python/pyrte.c
+
6
−
3
View file @
6a246a72
...
...
@@ -274,6 +274,9 @@
VERSION HISTORY (update SOFTWAREVN as well!)
---------------
17-MAY-2010 JFP v1.1.7, add missing Py_Finalize() in ProcessCachingRte()
PyErr_Occurred is a borrowed reference - remove
erroneous calls to Py_DECREF
30-APR-2010 JFP v1.1.6, WsgiSendResponse(), headers were send too early
in some cases
29-APR-2010 MGD v1.1.5, PYRTE_HEAD_CVT_GET and script=param=PYRTE=/HEAD=GET
...
...
@@ -291,7 +294,7 @@
/*****************************************************************************/
#define SOFTWARECR "Copyright (C) 2007-2010 Mark G.Daniel"
#define SOFTWAREVN "1.1.
6
"
#define SOFTWAREVN "1.1.
7
"
#define SOFTWARENM "PYRTE"
#ifdef __ALPHA
# define SOFTWAREID SOFTWARENM " AXP-" SOFTWAREVN
...
...
@@ -894,7 +897,6 @@
if
(
pError
=
PyErr_Occurred
())
{
ReportError
(
__LINE__
,
0
,
1
,
NULL
);
Py_DECREF
(
pError
);
free
(
ccptr
->
FileNamePtr
);
ccptr
->
FileNamePtr
=
NULL
;
}
...
...
@@ -1269,7 +1271,6 @@
if
(
pError
=
PyErr_Occurred
())
{
ReportError
(
__LINE__
,
0
,
1
,
NULL
);
Py_DECREF
(
pError
);
free
(
ccptr
->
FileNamePtr
);
ccptr
->
FileNamePtr
=
NULL
;
}
...
...
@@ -1315,6 +1316,8 @@
if
(
UsageLimit
&&
UsageCount
>
UsageLimit
)
break
;
}
Py_Finalize
();
}
/*****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
src/python/readmore.html
+
2
−
2
View file @
6a246a72
...
...
@@ -60,7 +60,7 @@
<CENTER>
<H1>
Python Run-Time Environment
</H1>
<H3>
Version 1.1.
6
,
1st May
2010
</H3>
<H3>
Version 1.1.
7
,
4th June
2010
</H3>
<P><B>
Copyright
©
2007-2010 Mark G. Daniel
</B>
<BR>
This program, comes with ABSOLUTELY NO WARRANTY.
...
...
@@ -167,7 +167,7 @@
</A>
<P>
Although there are experimentation modes built into PyRTE basically it will be
used as a WASD Run-Time Environment providing persisten Python interpreter(s)
used as a WASD Run-Time Environment providing persisten
t
Python interpreter(s)
and environment(s) for Python scripts and applications. Benchmarking indicates
the CGIplus/RTE use reduces activation time to 3% of CGI (yes, that's correct,
by a factor 35 - a python interpreter is quite expensive to instantiate).
...
...
This diff is collapsed.
Click to expand it.
src/python/scripts/pyrte_test2.py
+
1
−
1
View file @
6a246a72
...
...
@@ -64,4 +64,4 @@
while
wasd
.
cgiplus_begin
(
True
):
CGIorCGIplus
()
wasd
.
reuse_interpreter
(
True
)
###
wasd.reuse_interpreter(True)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment