You've already forked gnatcoll-core
mirror of
https://github.com/AdaCore/gnatcoll-core.git
synced 2026-02-12 12:58:57 -08:00
12 lines
275 B
Ada
12 lines
275 B
Ada
with Ada.Strings.UTF_Encoding;
|
|
|
|
package Test_Python is
|
|
|
|
package UTF8 renames Ada.Strings.UTF_Encoding;
|
|
|
|
function Python_Executable return UTF8.UTF_8_String;
|
|
-- Return absolute location to the python executable used to launch the
|
|
-- testsuite.
|
|
|
|
end Test_Python;
|