- Oct 24, 2023
-
-
Olivier Stasse authored
-
- Mar 30, 2022
-
-
Guilhem Saurel authored
-
- Sep 13, 2021
-
-
Guilhem Saurel authored
-
- Sep 03, 2021
-
-
Guilhem Saurel authored
ref. https://docs.python.org/3/c-api/init.html#c.PyEval_InitThreads: > Changed in version 3.7: This function is now called by Py_Initialize(), > so you don’t have to call it yourself anymore. > Changed in version 3.9: The function now does nothing. > Deprecated since version 3.9, will be removed in version 3.11.
-
- Mar 19, 2020
-
-
Guilhem Saurel authored
-
- Oct 29, 2019
-
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
- Sep 26, 2018
-
-
Joseph Mirabel authored
-
- Sep 13, 2018
-
-
- Jul 30, 2018
-
-
Joseph Mirabel authored
-
- Aug 22, 2014
-
-
Francois Keith authored
Former version crashed in case of syntax error (cf test_syntax_error.py)
-
- Mar 17, 2014
-
-
Francois Keith authored
-
Francois Keith authored
-
Francois Keith authored
-
- Feb 28, 2014
-
-
Francois Keith authored
The goal is to reduce the memory consumption.
-
- Jul 09, 2013
-
-
olivier stasse authored
Make possible to read the output from the process lauching the process.
-
- Oct 16, 2012
-
-
Thomas Moulard authored
-
- Sep 07, 2012
-
- Jul 26, 2012
-
-
olivier stasse authored
-
- Jul 23, 2012
-
-
olivier stasse authored
This commit detect when a statement is evaluated with PyRun_String run with Py_eval_input. This seems to generate a Syntax Error. Thus if an exception with Syntax Error is generated with Py_eval_input, the python interpreter does a second pass with Py_single_input. The string err is set appropriatly, out has to be checked.
-
- Jul 20, 2012
-
-
olivier stasse authored
-
- Dec 27, 2011
-
-
Francois Keith authored
-
Francois Keith authored
-
- Mar 04, 2011
-
-
Duong Dang authored
-
- Feb 11, 2011
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
-
-
- Feb 10, 2011
-
-
Florent Lamiraux authored
This is required in order to make import of module dl succeed.
-
- Feb 08, 2011
-
-
Florent Lamiraux authored
-
- Jan 24, 2011
-
-
Florent Lamiraux authored
This function is equivalent to print() under python, is equivalent to str() in dg-python.
-
- Jan 23, 2011
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
Executable dg-python emulates a minimal python interpreter. The interpreter is able to - execute single statements: (import, print,...), - evaluate expressions. Expressions and statements are separated by semi-colons. Several statements and/or evaluations between two semi-colons yield an undefined behavior.
-