diff options
author | Karl Berry <karl@freefriends.org> | 2023-02-16 21:35:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-02-16 21:35:54 +0000 |
commit | f6ae09925ffc56ceab43203416863ba8f82a7ec1 (patch) | |
tree | 32d31ea617258428bdcb7e4e6cbf8a54195793f9 /Master/texmf-dist | |
parent | 4524edc6ed4f603e0d556d5b9c366de0425743f9 (diff) |
pyluatex (16feb23)
git-svn-id: svn://tug.org/texlive/trunk@65855 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf | bin | 83049 -> 83051 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex | 2 | ||||
-rw-r--r-- | Master/texmf-dist/tex/lualatex/pyluatex/pyluatex-interpreter.py | 2 | ||||
-rw-r--r-- | Master/texmf-dist/tex/lualatex/pyluatex/pyluatex.sty | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf Binary files differindex bc41fa99e41..d357f153852 100644 --- a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf +++ b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.pdf diff --git a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex index 4dc0c09e353..908fb04c772 100644 --- a/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex +++ b/Master/texmf-dist/doc/lualatex/pyluatex/pyluatex.tex @@ -15,7 +15,7 @@ \usepackage{url} \title{The \emph{pyluatex} package} \author{Tobias Enderle\\\url{https://github.com/tndrle/PyLuaTeX}} -\date{v0.6.0 (2023/01/14)} +\date{v0.6.1 (2023/02/15)} \begin{document} \maketitle \raggedright diff --git a/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex-interpreter.py b/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex-interpreter.py index 341c2ace04b..13256ba3863 100644 --- a/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex-interpreter.py +++ b/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex-interpreter.py @@ -82,7 +82,7 @@ class Interpreter(InteractiveInterpreter): self.success = False output += out.getvalue() if not ignore_errors and not self.success: - return False, output + return False, output, self.tex._log_message() return self.success, output, self.tex._log_message() def execute(self, code): diff --git a/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex.sty b/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex.sty index db5654e6b8c..11b9261709a 100644 --- a/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex.sty +++ b/Master/texmf-dist/tex/lualatex/pyluatex/pyluatex.sty @@ -9,7 +9,7 @@ %% version 2005/12/01 or later. \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{pyluatex}[2023/01/14 v0.6.0 Execute Python code on the fly] +\ProvidesPackage{pyluatex}[2023/02/15 v0.6.1 Execute Python code on the fly] \RequirePackage{expl3} \ExplSyntaxOn |