Skip to content

Commit

Permalink
Doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-zeller committed Jan 16, 2025
1 parent 4da45df commit 7403038
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 222 deletions.
42 changes: 0 additions & 42 deletions docs/beta/code/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/beta/code/Tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# "Tracking Bugs" - a chapter of "The Debugging Book"
# Web site: https://www.debuggingbook.org/html/Tracking.html
# Last change: 2025-01-13 16:04:06+01:00
# Last change: 2025-01-16 11:28:05+01:00
#
# Copyright (c) 2021-2025 CISPA Helmholtz Center for Information Security
# Copyright (c) 2018-2020 Saarland University, authors, and contributors
Expand Down
7 changes: 4 additions & 3 deletions docs/beta/code/bookutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,10 @@ def show_ast(tree: AST) -> Optional[Any]:
print(ast.dump(tree))
return None

# Note: For Python >=3.12, this needs the patched `showast2` module
# e.g. git+https://github.com/andreas-zeller/show_ast.git@andreas
import showast2
# For Python >=3.12,
# we need the patched `showast2` module instead of `showast`
# see git+https://github.com/andreas-zeller/show_ast.git@andreas
import showast2 # type: ignore
return showast2.show_ast(tree)

# Escaping unicode characters into ASCII for user-facing strings
Expand Down
60 changes: 0 additions & 60 deletions docs/beta/code/requirements.txt

This file was deleted.

65 changes: 0 additions & 65 deletions docs/beta/code/setup.py

This file was deleted.

Binary file added docs/beta/dist/debuggingbook-1.3.1.tar.gz
Binary file not shown.
Binary file removed docs/beta/dist/debuggingbook-1.3.tar.gz
Binary file not shown.
Binary file modified docs/beta/dist/debuggingbook-code.zip
Binary file not shown.
Binary file modified docs/beta/dist/debuggingbook-notebooks.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions docs/beta/html/00_Table_of_Contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -12311,7 +12311,7 @@ <h4 id="Inspecting-Call-Stacks"><a href="StackInspector.html">Inspecting Call St
The content of this project is licensed under the
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target=_blank>Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
The source code that is part of the content, as well as the source code used to format and display that content is licensed under the <a href="https://github.com/uds-se/debuggingbook/blob/master/LICENSE.md#mit-license">MIT License</a>.
<a href="https://github.com/uds-se/debuggingbook/commits/master/notebooks/00_Table_of_Contents.ipynb" target=_blank)>Last change: 2025-01-13 16:46:23+01:00</a> &bull;
<a href="https://github.com/uds-se/debuggingbook/commits/master/notebooks/00_Table_of_Contents.ipynb" target=_blank)>Last change: 2025-01-16 11:45:33+01:00</a> &bull;
<a href="#citation" id="cite" onclick="revealCitation()">Cite</a> &bull;
<a href="https://cispa.de/en/impressum" target=_blank>Imprint</a>
</p>
Expand All @@ -12327,7 +12327,7 @@ <h4 id="Inspecting-Call-Stacks"><a href="StackInspector.html">Inspecting Call St
<a name="citation"></a>
<h2>How to Cite this Work</h2>
<p>
Andreas Zeller: "<a href="https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html">The Debugging Book</a>". In Andreas Zeller, "<a href="https://www.debuggingbook.org/beta/">The Debugging Book</a>", <a href="https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html">https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html</a>. Retrieved 2025-01-13 16:46:23+01:00.
Andreas Zeller: "<a href="https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html">The Debugging Book</a>". In Andreas Zeller, "<a href="https://www.debuggingbook.org/beta/">The Debugging Book</a>", <a href="https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html">https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html</a>. Retrieved 2025-01-16 11:45:33+01:00.
</p>
<pre>
@incollection{debuggingbook2025:00_Table_of_Contents,
Expand All @@ -12337,9 +12337,9 @@ <h2>How to Cite this Work</h2>
year = {2025},
publisher = {CISPA Helmholtz Center for Information Security},
howpublished = {\url{https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html}},
note = {Retrieved 2025-01-13 16:46:23+01:00},
note = {Retrieved 2025-01-16 11:45:33+01:00},
url = {https://www.debuggingbook.org/beta/html/00_Table_of_Contents.html},
urldate = {2025-01-13 16:46:23+01:00}
urldate = {2025-01-16 11:45:33+01:00}
}
</pre>
</div>
Expand Down
Loading

0 comments on commit 7403038

Please sign in to comment.