Replace it with two functions that won't run into issues with
trying to call bound objects, instances, etc. that weren't on
the stack. In general, if you have a callable value of unknown
type you should call `krk_callStack` with it on the stack followed
by all of its args; to make this abundantly clear, `krk_callStack`
only takes the argument count. For calling things we know to be
safe (closures and natives), there is `krk_callDirect`, which should
be used, for example, when calling core methods like __repr__.
* Add some docs, and remove second Code page 874 codec (they handled the
non-overridden C1 area differently, but we only need one).
* More docs work.
* Doc stuff.
* Adjusted.
* More tweaks (table padding is not the docstring's problem).
* CSS and docstring tweaks.
* Link from modules to parent packages and vice versa.
* More documentation.
* Docstrings for all `codecs` submodules.
* Move encode_jis7_reduced into dbextra_data_7bit (thus completing the lazy
startup which was apparently not complete already) and docstrings added to
implementations of base class methods referring up to the base class.
* Remove FUSE junk that somehow made it into the repo.
* Some more docstrings.
* Fix some broken references to `string` (rather than `data`) which would have
caused a problem if any existing error handler had returned a negative
offset (which no current handler does, but it's worth fixing anyway).
* Add a cp042 codec to accompany the x-user-defined codec, and to pave the
way for maybe adding Adobe Symbol, Zapf Dingbats or Wingdings codecs
in future.
* Better Japanese Autodetect behaviour for ISO-2022-JP (add yet another
condition in which it will be detected, making it able to conclusively
detect it prior to end of stream without being fed an entire escape
sequence in one call). Also some docs tweaks.
* idstr() → _idstr() since it's internal.
* Docs for codecs.pifonts.
* Docstrings for dbextra.
* Document the sbextra classes.
* Docstrings for the web encodings.
* Possibly a fairer assessment of likely reality.
* Docstrings for codecs.binascii
* The *encoding* isn't removed (the BOM is).
* Make it clearer when competing OEM code pages use different letter layouts.
* Fix copied in error.
* Stop generating linking to non-existent "← tools" from tools.gendoc.
* Move .fuse_hidden* exclusion to my user-level config.
* Constrain the table style changes to class .markdownTable, to avoid any
effect on other interface tables generated by Doxygen.
* Refer to `__ispackage__` when generating help.
- Don't clear the HAS_EXCEPTION bit.
- Reuse CLEAN_OUTPUT to disable printing the exception.
- Don't reset the stack, repls should do that _on every call_.
- Fix up sandbox and simple-repl.h, they don't need to do that silly stack thing to handle exceptions themselves.