Structure and Interpretation of Computer Programs
Structure and Interpretation of Computer Programs
When you `print(last_game)` in the following script: ```python #!/bin/env python3 from plumbum import local ls = local["/usr/bin/ls"] tail = local["/usr/bin/tail"] leela = local["/cygdrive/c/Users/Owner/AppData/Local/Programs/Leela/Leela0110.exe"] last_game = ls["-arth", '/cygdrive/c/Users/Owner/Downloads/*.sgf'] | tail["-1"] print(last_game)...
Hello, I am trying to execute `pip freeze > x.txt` on Windows 10. ` local["pip"]("freeze")` returns a string of output from the shell call. However `(local["pip"]("freeze") > 'x.txt')` returns False...
### Request Hi Marc, this is Terrence from [the Pure Python web app survey.](https://may69.com/purepython/) 1. Do you think it is a good idea to open an 'Discussions' tab here on...
The [Transcrypt docs](https://www.transcrypt.org/docs/html/integration_javascript.html#practical-example-a-simple-responsive-website-using-no-html-or-css-at-all) state: > To many programmers, using ‘static’ HTML and CSS feels like being locked up in a closet. As an alternative, responsiveness can simply be programmed using...
The [user guide docs on format](https://arrow.readthedocs.io/en/latest/guide.html#format) do not document the various arguments that can be provided. The [API guide](https://arrow.readthedocs.io/en/latest/api-guide.html#arrow.arrow.Arrow.format) also lacks such information.
**Is your feature request related to a problem? Please describe.** When the connection fails, one receives the misleading exception: "please run connect() first" which is coming from red-mail calling smtplib....
**Is your feature request related to a problem? Please describe.** When I encountered https://github.com/Miksus/red-mail/issues/63 I first sought to enable debug-level logging to see what the problem was. But upon inspecting...
Hello, I am making heavy use of `self.parent` in some code I wrote, but: 1. [searching the docs](https://traitlets.readthedocs.io/en/stable/search.html?q=parent) does not define `parent` 2. searching [the repo](https://github.com/ipython/traitlets) for `def parent` does...
In https://github.com/ipython/traitlets/issues/490 this issue was raised and then closed by @rmorshea. However, * [searching the docs for mandatory](https://traitlets.readthedocs.io/en/stable/search.html?q=mandatory#) yields nothing * [searching the docs for required](https://traitlets.readthedocs.io/en/stable/search.html?q=required#) doesnt yield any relevant...
`NewCompactObject` is supposed to be a subclass of `CompactObject` but the code does not show that [on this page](https://atom.readthedocs.io/en/latest/basis/basis.html) Instead both classes inherit from `Atom`.