This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* | |
https://superuser.com/questions/1750521/firefox-106-0-3-ignoring-fullscr-toggler-displaynoneimportant-in-user | |
*/ | |
*|div#fullscr-toggler { | |
display:none !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
@pytest.fixture(autouse=True, scope="function") | |
def temporary_working_directory(tmp_path_factory): | |
""" | |
Create (and chdir into) a temporary working directory using | |
PyTest facilities for the specified scope. After testing scope | |
is complete, original working directory is restored and temporary | |
working directory is removed. This fixture could be listed as |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pdb | |
try: | |
1/0 | |
except Exception: | |
# Just say "no" to endless debug-prints | |
pdb.post_mortem() | |
#<stdin>(2)<module>() | |
#(Pdb) h |