[Joypy-announce] [SCM] Thun (joypy) branch, master, updated. 779ea5c7e58308a26bffd03bce1bba79d1d31dbb

Back to archive index
scmno****@osdn***** scmno****@osdn*****
Thu Sep 8 01:26:10 JST 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to "Thun" repository
containing the "joypy" project.

The branch, master has been updated
       via  779ea5c7e58308a26bffd03bce1bba79d1d31dbb (commit)
       via  b386549226986e05982169bd3535a11b811b2d77 (commit)
       via  d3f25affd5276ad667c197232bfff49e1712e65d (commit)
       via  4a5716d8b2c1a6aac7c9bf6a9a5b2a79b577d885 (commit)
       via  f70a941be36a3d7e6692720a8153a14e8bbdce6f (commit)
       via  3883cac99a93024b7d124227e3a741d309a5e731 (commit)
      from  d0a253c503988e5a8f002f7e7d855e1753002c24 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 779ea5c7e58308a26bffd03bce1bba79d1d31dbb
Author: Simon Forman <sform****@hushm*****>
Date:   Wed Sep 7 09:24:20 2022 -0700

    Remove rust impl.
    
    GitHub nagged me about some vuln in RE package or something?
    https://github.com/calroc/Thun/security/dependabot/1

commit b386549226986e05982169bd3535a11b811b2d77
Author: Simon Forman <sform****@hushm*****>
Date:   Wed Sep 7 09:23:02 2022 -0700

    Simple Joy

commit d3f25affd5276ad667c197232bfff49e1712e65d
Author: Simon Forman <sform****@hushm*****>
Date:   Tue Sep 6 14:33:51 2022 -0700

    Remove psaces from some filenames.

commit 4a5716d8b2c1a6aac7c9bf6a9a5b2a79b577d885
Author: Simon Forman <sform****@hushm*****>
Date:   Tue Aug 16 15:26:07 2022 -0700

    Rebuild HTML docs.

commit f70a941be36a3d7e6692720a8153a14e8bbdce6f
Author: Simon Forman <sform****@hushm*****>
Date:   Mon Aug 15 17:33:34 2022 -0700

    A good talk.

commit 3883cac99a93024b7d124227e3a741d309a5e731
Author: Simon Forman <sform****@hushm*****>
Date:   Mon Aug 15 16:20:59 2022 -0700

    Minor edits.

-----------------------------------------------------------------------

Summary of changes:
 docs/misc/neat-talk.txt                            |   9 +
 .../{Joy in Jupyter.ipynb => Joy-in-Jupyter.ipynb} |   0
 ...of 3 and 5.ipynb => Multiples-of-3-and-5.ipynb} |   0
 .../Try out the Joypy Jupyter Kernel.ipynb         |  12 +-
 .../sphinx_docs/_build/doctrees/environment.pickle | Bin 290010 -> 292656 bytes
 docs/sphinx_docs/_build/doctrees/joy.doctree       | Bin 24830 -> 26671 bytes
 docs/sphinx_docs/_build/doctrees/lib.doctree       | Bin 95615 -> 95615 bytes
 docs/sphinx_docs/_build/doctrees/library.doctree   | Bin 222287 -> 223865 bytes
 .../doctrees/notebooks/The_Four_Operations.doctree | Bin 39823 -> 39826 bytes
 docs/sphinx_docs/_build/doctrees/parser.doctree    | Bin 13558 -> 13512 bytes
 docs/sphinx_docs/_build/doctrees/stack.doctree     | Bin 40447 -> 42921 bytes
 docs/sphinx_docs/_build/html/_modules/joy/joy.html |  21 +-
 .../_build/html/_modules/joy/library.html          |  78 ++-
 .../_build/html/_modules/joy/parser.html           |  10 +-
 .../_build/html/_modules/joy/utils/stack.html      |  24 +-
 docs/sphinx_docs/_build/html/_sources/lib.rst.txt  |   2 +-
 .../_sources/notebooks/The_Four_Operations.rst.txt |   2 +-
 docs/sphinx_docs/_build/html/genindex.html         |   4 +-
 docs/sphinx_docs/_build/html/joy.html              |  26 +-
 docs/sphinx_docs/_build/html/lib.html              |   2 +-
 docs/sphinx_docs/_build/html/library.html          |  12 +-
 .../_build/html/notebooks/The_Four_Operations.html |   2 +-
 docs/sphinx_docs/_build/html/objects.inv           | Bin 1588 -> 1599 bytes
 docs/sphinx_docs/_build/html/parser.html           |   6 +-
 docs/sphinx_docs/_build/html/searchindex.js        |   2 +-
 docs/sphinx_docs/_build/html/stack.html            |  25 +-
 docs/sphinx_docs/lib.rst                           |   2 +-
 docs/sphinx_docs/notebooks/The_Four_Operations.rst |   2 +-
 implementations/Python/joy/expr.py                 |   5 +-
 implementations/Python/joy/joy.py                  |  17 +-
 implementations/Python/joy/parser.py               |  10 +-
 implementations/Python/joy/utils/stack.py          |  20 +-
 implementations/Python/simplejoy.py                | 724 +++++++++++++++++++++
 implementations/Rust/.gitignore                    |   1 -
 implementations/Rust/Cargo.lock                    |  49 --
 implementations/Rust/Cargo.toml                    |  11 -
 implementations/Rust/src/main.rs                   |  86 ---
 implementations/Rust/src/stack.rs                  | 133 ----
 implementations/defs.txt                           |   1 +
 implementations/expr.py                            |  24 +
 40 files changed, 933 insertions(+), 389 deletions(-)
 create mode 100644 docs/misc/neat-talk.txt
 rename docs/notebooks/{Joy in Jupyter.ipynb => Joy-in-Jupyter.ipynb} (100%)
 rename docs/notebooks/{Multiples of 3 and 5.ipynb => Multiples-of-3-and-5.ipynb} (100%)
 create mode 100644 implementations/Python/simplejoy.py
 delete mode 100644 implementations/Rust/.gitignore
 delete mode 100644 implementations/Rust/Cargo.lock
 delete mode 100644 implementations/Rust/Cargo.toml
 delete mode 100644 implementations/Rust/src/main.rs
 delete mode 100644 implementations/Rust/src/stack.rs


hooks/post-receive
-- 
Thun (joypy)



More information about the Joypy-announce mailing list
Back to archive index