Skip to content

Instantly share code, notes, and snippets.

distutils feature/skeleton @ .tox/docs/bin/pip install -q --force-reinstall git+https://github.com/sphinx-contrib/sphinx-lint@e3f74edfda09a5c3170277ef84b1fd308825de64
distutils feature/skeleton @ .tox/docs/bin/python -m sphinxlint docs
No problems found.
distutils feature/skeleton @ .tox/docs/bin/pip install -q --force-reinstall git+https://github.com/sphinx-contrib/sphinx-lint@42f1b98299dc5be6b4e2111d77369793a70028b2
distutils feature/skeleton @ .tox/docs/bin/python -m sphinxlint docs
Process SpawnPoolWorker-6:
Process SpawnPoolWorker-4:
Process SpawnPoolWorker-2:
Process SpawnPoolWorker-1:
Traceback (most recent call last):
cssutils main @ .tox/docs/bin/python -m sphinxlint docs
Process SpawnPoolWorker-1:
Traceback (most recent call last):
File "/opt/homebrew/Cellar/python@3.11/3.11.6/Frameworks/Python.framework/Versions/3.11/lib/python3.11/multiprocessing/process.py", line 314, in _bootstrap
self.run()
File "/opt/homebrew/Cellar/python@3.11/3.11.6/Frameworks/Python.framework/Versions/3.11/lib/python3.11/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/opt/homebrew/Cellar/python@3.11/3.11.6/Frameworks/Python.framework/Versions/3.11/lib/python3.11/multiprocessing/pool.py", line 114, in worker
task = get()
^^^^^
--- /mnt/vex/default_pkg/test-lossy-export_citc-client_sh.runfiles/google3/devtools/piper/hgfission/e2e/tests/test-lossy-export.t
+++ /tmp/vex/test_tmp/mercurial_env/test-lossy-export.t#citc-client.err
@@ -39,28 +39,151 @@
$ create_and_cd_to_new_fig_repo --include "//depot/$SUBMIT_DIR/..." --include google3/devtools/piper -q
$ mkdir -p "$SUBMIT_DIR"
$ hg cp google3/devtools/piper/BUILD "$SUBMIT_DIR/copy_one.py"
+ ** unknown exception encountered, please report by visiting
+ ** http://go/fig-bug
+ ** Python 3.10.13 (stable, redacted, redacted) [Clang google3-trunk (aecb58005c692ed756d748437896498b124e9d45)]
+ ** Mercurial Distributed SCM (version 6.4.5)
58563 default @ $XONSH_CAPTURE_ALWAYS = False
58563 default @ aliases['caution'] = 'echo something'
58563 default @ caution
something
58563 default @ caution > /dev/null
58563 default @ aliases['caution'] = 'echo @("something")'
58563 default @ caution
something
58563 default @ caution > /dev/null
something
import ctypes
from ctypes import c_void_p, c_int, c_char, c_ulong
lib_path = '/opt/homebrew/opt/openssl@3/lib/libcrypto.dylib'
lib = ctypes.cdll.LoadLibrary(lib_path)
MAX_BLOCK_LENGTH = 32
MAX_IV_LENGTH = 16
#!python3
import curses
import time
screen = curses.initscr()
screen.clear()
pad = curses.newpad(100, 100)
for line in range(1, 100):
pad.addstr(line - 1, 0, f'line {line}')
import os
import threading
locks = lock, rlock = threading.Lock(), threading.RLock()
with lock, rlock:
child = os.fork()
if child:
# run with:
# pip-run -- -m coverage run mod.py
__requires__ = ['pywin32-ctypes', 'coverage']
import multiprocessing
from win32ctypes.pywin32 import win32cred
from win32ctypes.pywin32 import pywintypes
$ create_and_cd_to_new_fig_repo --include path:google3/subdir -q
+ Traceback (most recent call last):
+ File "/usr/local/google/tmp/fig-e2e-ic_3wuy_/hg/mercurial/extensions.py", line 257, in _runuisetup
+ uisetup(ui)
+ File "/usr/local/google/_blaze_jaraco/f1c65bfcae194142dc7c58821f43f5ca/execroot/google3/blaze-out/k8-opt/bin/devtools/piper/hgfission/e2e/run_tests.runfiles/google3/third_party/py/google_hgext/__init__.py", line 223, in uisetup
+ loadfunc('commandsetup', ui, command)
+ File "/usr/local/google/_blaze_jaraco/f1c65bfcae194142dc7c58821f43f5ca/execroot/google3/blaze-out/k8-opt/bin/devtools/piper/hgfission/e2e/run_tests.runfiles/google3/third_party/py/google_hgext/__init__.py", line 203, in loadfunc
+ func = getattr(sub, funcname, None)
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ File "<frozen importlib.util>", line 247, in __getattribute__
$ cat >> $HGRCPATH <<EOF
> [phases]
> publish = False
> [alias]
> qlog = log --template='{rev} - {node|short} {desc} ({phase})\n'
> [diff]
> git = 1
> unified = 0
> [extensions]
> EOF