beebium 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- beebium-0.1.2/.gitignore +139 -0
- beebium-0.1.2/COPYING.txt +674 -0
- beebium-0.1.2/PKG-INFO +436 -0
- beebium-0.1.2/README.md +410 -0
- beebium-0.1.2/examples/README.md +60 -0
- beebium-0.1.2/examples/_demo.py +86 -0
- beebium-0.1.2/examples/audio_streaming.py +32 -0
- beebium-0.1.2/examples/basic_programs.py +24 -0
- beebium-0.1.2/examples/debugging.py +51 -0
- beebium-0.1.2/examples/device_inspection.py +41 -0
- beebium-0.1.2/examples/disc_drives.py +45 -0
- beebium-0.1.2/examples/ext_acorn_rtc.py +33 -0
- beebium-0.1.2/examples/ext_acorn_scsi.py +31 -0
- beebium-0.1.2/examples/ext_aun.py +40 -0
- beebium-0.1.2/examples/ext_host_serial.py +32 -0
- beebium-0.1.2/examples/ext_piconet.py +26 -0
- beebium-0.1.2/examples/ext_rpc_serial.py +30 -0
- beebium-0.1.2/examples/extension_discovery.py +62 -0
- beebium-0.1.2/examples/keyboard_and_screen.py +32 -0
- beebium-0.1.2/examples/lifecycle.py +34 -0
- beebium-0.1.2/examples/memory_access.py +41 -0
- beebium-0.1.2/examples/serial_demo.py +191 -0
- beebium-0.1.2/examples/sideways_roms.py +31 -0
- beebium-0.1.2/examples/video_capture.py +32 -0
- beebium-0.1.2/examples/wiggle.py +38 -0
- beebium-0.1.2/pyproject.toml +131 -0
- beebium-0.1.2/scripts/check_proto_regen.sh +57 -0
- beebium-0.1.2/scripts/generate_proto.sh +114 -0
- beebium-0.1.2/scripts/test-wheel.sh +99 -0
- beebium-0.1.2/src/beebium/client/__init__.py +173 -0
- beebium-0.1.2/src/beebium/client/_proto/__init__.py +28 -0
- beebium-0.1.2/src/beebium/client/_proto/audio_pb2.py +62 -0
- beebium-0.1.2/src/beebium/client/_proto/audio_pb2.pyi +244 -0
- beebium-0.1.2/src/beebium/client/_proto/audio_pb2_grpc.py +160 -0
- beebium-0.1.2/src/beebium/client/_proto/audio_pb2_grpc.pyi +88 -0
- beebium-0.1.2/src/beebium/client/_proto/debugger_pb2.py +190 -0
- beebium-0.1.2/src/beebium/client/_proto/debugger_pb2.pyi +2116 -0
- beebium-0.1.2/src/beebium/client/_proto/debugger_pb2_grpc.py +2689 -0
- beebium-0.1.2/src/beebium/client/_proto/debugger_pb2_grpc.pyi +669 -0
- beebium-0.1.2/src/beebium/client/_proto/disc_pb2.py +94 -0
- beebium-0.1.2/src/beebium/client/_proto/disc_pb2.pyi +666 -0
- beebium-0.1.2/src/beebium/client/_proto/disc_pb2_grpc.py +480 -0
- beebium-0.1.2/src/beebium/client/_proto/disc_pb2_grpc.pyi +202 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_pb2.py +78 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_pb2.pyi +586 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_pb2_grpc.py +347 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_pb2_grpc.pyi +163 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2.py +58 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2.pyi +171 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2_grpc.py +188 -0
- beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2_grpc.pyi +136 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2.py +56 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2.pyi +114 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2_grpc.py +182 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2_grpc.pyi +114 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2.py +84 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2.pyi +688 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2_grpc.py +196 -0
- beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2_grpc.pyi +148 -0
- beebium-0.1.2/src/beebium/client/_proto/indicator_pb2.py +74 -0
- beebium-0.1.2/src/beebium/client/_proto/indicator_pb2.pyi +268 -0
- beebium-0.1.2/src/beebium/client/_proto/indicator_pb2_grpc.py +217 -0
- beebium-0.1.2/src/beebium/client/_proto/indicator_pb2_grpc.pyi +118 -0
- beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2.py +118 -0
- beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2.pyi +776 -0
- beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2_grpc.py +943 -0
- beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2_grpc.pyi +418 -0
- beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2.py +64 -0
- beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2.pyi +293 -0
- beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2_grpc.py +119 -0
- beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2_grpc.pyi +79 -0
- beebium-0.1.2/src/beebium/client/_proto/protocol_fingerprint.py +15 -0
- beebium-0.1.2/src/beebium/client/_proto/serial_pb2.py +54 -0
- beebium-0.1.2/src/beebium/client/_proto/serial_pb2.pyi +154 -0
- beebium-0.1.2/src/beebium/client/_proto/serial_pb2_grpc.py +173 -0
- beebium-0.1.2/src/beebium/client/_proto/serial_pb2_grpc.pyi +112 -0
- beebium-0.1.2/src/beebium/client/_proto/sideways_pb2.py +78 -0
- beebium-0.1.2/src/beebium/client/_proto/sideways_pb2.pyi +555 -0
- beebium-0.1.2/src/beebium/client/_proto/sideways_pb2_grpc.py +257 -0
- beebium-0.1.2/src/beebium/client/_proto/sideways_pb2_grpc.pyi +121 -0
- beebium-0.1.2/src/beebium/client/_proto/system_pb2.py +96 -0
- beebium-0.1.2/src/beebium/client/_proto/system_pb2.pyi +779 -0
- beebium-0.1.2/src/beebium/client/_proto/system_pb2_grpc.py +473 -0
- beebium-0.1.2/src/beebium/client/_proto/system_pb2_grpc.pyi +193 -0
- beebium-0.1.2/src/beebium/client/_proto/tube_pb2.py +68 -0
- beebium-0.1.2/src/beebium/client/_proto/tube_pb2.pyi +291 -0
- beebium-0.1.2/src/beebium/client/_proto/tube_pb2_grpc.py +301 -0
- beebium-0.1.2/src/beebium/client/_proto/tube_pb2_grpc.pyi +133 -0
- beebium-0.1.2/src/beebium/client/_proto/video_pb2.py +102 -0
- beebium-0.1.2/src/beebium/client/_proto/video_pb2.pyi +978 -0
- beebium-0.1.2/src/beebium/client/_proto/video_pb2_grpc.py +404 -0
- beebium-0.1.2/src/beebium/client/_proto/video_pb2_grpc.pyi +238 -0
- beebium-0.1.2/src/beebium/client/_version.py +15 -0
- beebium-0.1.2/src/beebium/client/audio.py +164 -0
- beebium-0.1.2/src/beebium/client/basic.py +259 -0
- beebium-0.1.2/src/beebium/client/client.py +660 -0
- beebium-0.1.2/src/beebium/client/connection.py +266 -0
- beebium-0.1.2/src/beebium/client/cpu.py +278 -0
- beebium-0.1.2/src/beebium/client/crtc.py +219 -0
- beebium-0.1.2/src/beebium/client/debugger.py +869 -0
- beebium-0.1.2/src/beebium/client/disassemble.py +291 -0
- beebium-0.1.2/src/beebium/client/disc.py +581 -0
- beebium-0.1.2/src/beebium/client/discovery.py +444 -0
- beebium-0.1.2/src/beebium/client/econet.py +408 -0
- beebium-0.1.2/src/beebium/client/econet_transport.py +179 -0
- beebium-0.1.2/src/beebium/client/exceptions.py +134 -0
- beebium-0.1.2/src/beebium/client/extension.py +258 -0
- beebium-0.1.2/src/beebium/client/extension_rpc.py +70 -0
- beebium-0.1.2/src/beebium/client/extension_ui.py +359 -0
- beebium-0.1.2/src/beebium/client/extensions.py +278 -0
- beebium-0.1.2/src/beebium/client/host.py +153 -0
- beebium-0.1.2/src/beebium/client/indicators.py +112 -0
- beebium-0.1.2/src/beebium/client/keyboard.py +857 -0
- beebium-0.1.2/src/beebium/client/keyboard_map.py +173 -0
- beebium-0.1.2/src/beebium/client/latch.py +108 -0
- beebium-0.1.2/src/beebium/client/memory.py +769 -0
- beebium-0.1.2/src/beebium/client/py.typed +0 -0
- beebium-0.1.2/src/beebium/client/pytest_plugin.py +298 -0
- beebium-0.1.2/src/beebium/client/screen.py +303 -0
- beebium-0.1.2/src/beebium/client/serial.py +119 -0
- beebium-0.1.2/src/beebium/client/server.py +462 -0
- beebium-0.1.2/src/beebium/client/sideways.py +366 -0
- beebium-0.1.2/src/beebium/client/sound.py +173 -0
- beebium-0.1.2/src/beebium/client/strings.py +158 -0
- beebium-0.1.2/src/beebium/client/system.py +590 -0
- beebium-0.1.2/src/beebium/client/tube.py +86 -0
- beebium-0.1.2/src/beebium/client/tube_system.py +181 -0
- beebium-0.1.2/src/beebium/client/tube_ula.py +345 -0
- beebium-0.1.2/src/beebium/client/via.py +216 -0
- beebium-0.1.2/src/beebium/client/video.py +728 -0
- beebium-0.1.2/src/beebium/client/video_ula.py +133 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/__init__.py +185 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2.py +72 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2.pyi +344 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2_grpc.py +314 -0
- beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2_grpc.pyi +151 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/__init__.py +86 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2.py +52 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2.pyi +85 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2_grpc.py +156 -0
- beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2_grpc.pyi +118 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/__init__.py +125 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2.py +70 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2.pyi +262 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2_grpc.py +293 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2_grpc.pyi +139 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/__init__.py +114 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2.py +74 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2.pyi +415 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2_grpc.py +203 -0
- beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2_grpc.pyi +103 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/__init__.py +99 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2.py +54 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2.pyi +126 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2_grpc.py +176 -0
- beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2_grpc.pyi +115 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/__init__.py +82 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/__init__.py +11 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2.py +60 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2.pyi +149 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2_grpc.py +210 -0
- beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2_grpc.pyi +106 -0
- beebium-0.1.2/tests/conftest.py +182 -0
- beebium-0.1.2/tests/firetrack.py +113 -0
- beebium-0.1.2/tests/test_acorn_extensions.py +101 -0
- beebium-0.1.2/tests/test_audio.py +77 -0
- beebium-0.1.2/tests/test_aun.py +198 -0
- beebium-0.1.2/tests/test_autoboot.py +507 -0
- beebium-0.1.2/tests/test_break_segfault.py +251 -0
- beebium-0.1.2/tests/test_commstar_prestel_keys.py +71 -0
- beebium-0.1.2/tests/test_commstar_serial_receive.py +119 -0
- beebium-0.1.2/tests/test_connection_tracking.py +207 -0
- beebium-0.1.2/tests/test_debugger.py +741 -0
- beebium-0.1.2/tests/test_disc_eject.py +209 -0
- beebium-0.1.2/tests/test_discovery_capability.py +94 -0
- beebium-0.1.2/tests/test_econet.py +423 -0
- beebium-0.1.2/tests/test_econet_transport.py +124 -0
- beebium-0.1.2/tests/test_extension_framework.py +265 -0
- beebium-0.1.2/tests/test_extension_ui.py +224 -0
- beebium-0.1.2/tests/test_extensions.py +176 -0
- beebium-0.1.2/tests/test_firetrack_saa5050.py +123 -0
- beebium-0.1.2/tests/test_frame_geometry_stability.py +141 -0
- beebium-0.1.2/tests/test_heartbeat.py +66 -0
- beebium-0.1.2/tests/test_host.py +127 -0
- beebium-0.1.2/tests/test_keyboard.py +258 -0
- beebium-0.1.2/tests/test_keyboard_locks.py +264 -0
- beebium-0.1.2/tests/test_keyboard_map.py +141 -0
- beebium-0.1.2/tests/test_machine_name_advertisement.py +209 -0
- beebium-0.1.2/tests/test_memory.py +629 -0
- beebium-0.1.2/tests/test_pacing.py +116 -0
- beebium-0.1.2/tests/test_parasite_state.py +149 -0
- beebium-0.1.2/tests/test_piconet.py +59 -0
- beebium-0.1.2/tests/test_plugin_discovery.py +71 -0
- beebium-0.1.2/tests/test_protocol_fingerprint.py +101 -0
- beebium-0.1.2/tests/test_revs_timing.py +280 -0
- beebium-0.1.2/tests/test_screen.py +304 -0
- beebium-0.1.2/tests/test_screen_text.py +652 -0
- beebium-0.1.2/tests/test_serial.py +122 -0
- beebium-0.1.2/tests/test_serial_cts.py +108 -0
- beebium-0.1.2/tests/test_serial_extensions.py +191 -0
- beebium-0.1.2/tests/test_server_crash_diagnostics.py +91 -0
- beebium-0.1.2/tests/test_server_discovery.py +195 -0
- beebium-0.1.2/tests/test_shutdown.py +245 -0
- beebium-0.1.2/tests/test_sideways.py +118 -0
- beebium-0.1.2/tests/test_signal_shutdown.py +193 -0
- beebium-0.1.2/tests/test_strings.py +196 -0
- beebium-0.1.2/tests/test_system.py +574 -0
- beebium-0.1.2/tests/test_teletext_screen.py +235 -0
- beebium-0.1.2/tests/test_tube_break_reset.py +215 -0
- beebium-0.1.2/tests/test_tube_chuckie_egg.py +174 -0
- beebium-0.1.2/tests/test_tube_elite.py +206 -0
- beebium-0.1.2/tests/test_tube_osbyte_throughput.py +189 -0
- beebium-0.1.2/tests/test_typing_watch.py +90 -0
- beebium-0.1.2/tests/tube_test_helpers.py +326 -0
- beebium-0.1.2/tests_packaging/test_wheel_packaging.py +168 -0
- beebium-0.1.2/uv.lock +436 -0
beebium-0.1.2/.gitignore
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
# Build directories
|
|
2
|
+
build/
|
|
3
|
+
build-*/
|
|
4
|
+
cmake-build-*/
|
|
5
|
+
out/
|
|
6
|
+
|
|
7
|
+
# vcpkg (cloned/installed locally or by CI)
|
|
8
|
+
vcpkg/
|
|
9
|
+
vcpkg_installed/
|
|
10
|
+
vcpkg_installed-*/
|
|
11
|
+
|
|
12
|
+
# CMake generated files
|
|
13
|
+
CMakeCache.txt
|
|
14
|
+
CMakeFiles/
|
|
15
|
+
cmake_install.cmake
|
|
16
|
+
Makefile
|
|
17
|
+
compile_commands.json
|
|
18
|
+
CTestTestfile.cmake
|
|
19
|
+
Testing/
|
|
20
|
+
_deps/
|
|
21
|
+
DartConfiguration.tcl
|
|
22
|
+
|
|
23
|
+
# catch_discover_tests writes <target>-<hash>_include.cmake plus a
|
|
24
|
+
# matching *_tests.cmake into the binary dir; ignore in case they
|
|
25
|
+
# leak into the source tree from an accidental in-source build.
|
|
26
|
+
*_include.cmake
|
|
27
|
+
*_tests.cmake
|
|
28
|
+
|
|
29
|
+
# Generated 6502 sources / generator binary -- correctly produced
|
|
30
|
+
# under build/ but ignore in case of an accidental in-source build.
|
|
31
|
+
/src/6502/6502_internal.inl
|
|
32
|
+
/src/6502/third_party/b2/6502_gen
|
|
33
|
+
|
|
34
|
+
# Generated preset bundles -- correctly produced under
|
|
35
|
+
# build/src/server/presets/.
|
|
36
|
+
/src/server/presets/
|
|
37
|
+
|
|
38
|
+
# Compiled objects and libraries
|
|
39
|
+
*.o
|
|
40
|
+
*.obj
|
|
41
|
+
*.a
|
|
42
|
+
*.lib
|
|
43
|
+
*.so
|
|
44
|
+
*.dylib
|
|
45
|
+
*.dll
|
|
46
|
+
|
|
47
|
+
# Executables
|
|
48
|
+
*.exe
|
|
49
|
+
*.out
|
|
50
|
+
|
|
51
|
+
# AI assistant configuration (user-specific)
|
|
52
|
+
.claude/
|
|
53
|
+
.kilo/
|
|
54
|
+
|
|
55
|
+
# IDE and editor files
|
|
56
|
+
.vscode/
|
|
57
|
+
.idea/
|
|
58
|
+
*.xcworkspace/
|
|
59
|
+
.vs/
|
|
60
|
+
*.sln
|
|
61
|
+
*.vcxproj*
|
|
62
|
+
|
|
63
|
+
# LSP and tooling caches
|
|
64
|
+
.cache/
|
|
65
|
+
|
|
66
|
+
# Xcode user-specific data (project files are tracked)
|
|
67
|
+
xcuserdata/
|
|
68
|
+
*.xcuserstate
|
|
69
|
+
|
|
70
|
+
# Xcode build trees. Anywhere, under any suffix: an in-tree DerivedData holds
|
|
71
|
+
# tens of thousands of files including checked-out SwiftPM dependencies, each
|
|
72
|
+
# of which is its own git repository, so a stray `git add -A` both bloats the
|
|
73
|
+
# history and creates accidental embedded repositories.
|
|
74
|
+
DerivedData/
|
|
75
|
+
DerivedData-*/
|
|
76
|
+
|
|
77
|
+
# Editor swap/backup files
|
|
78
|
+
*~
|
|
79
|
+
*.swp
|
|
80
|
+
*.swo
|
|
81
|
+
.*.swp
|
|
82
|
+
\#*\#
|
|
83
|
+
.#*
|
|
84
|
+
|
|
85
|
+
# macOS
|
|
86
|
+
.DS_Store
|
|
87
|
+
._*
|
|
88
|
+
|
|
89
|
+
.jbeval
|
|
90
|
+
|
|
91
|
+
# LLVM profiling
|
|
92
|
+
*.profraw
|
|
93
|
+
*.profdata
|
|
94
|
+
|
|
95
|
+
# Python
|
|
96
|
+
__pycache__/
|
|
97
|
+
*.py[cod]
|
|
98
|
+
*$py.class
|
|
99
|
+
*.egg-info/
|
|
100
|
+
.eggs/
|
|
101
|
+
dist/
|
|
102
|
+
.venv/
|
|
103
|
+
*.egg
|
|
104
|
+
|
|
105
|
+
# Node.js (oracle project)
|
|
106
|
+
node_modules/
|
|
107
|
+
oracle/dist/
|
|
108
|
+
oracle/public
|
|
109
|
+
|
|
110
|
+
/docs/manuals/
|
|
111
|
+
/docs/manuals_text/
|
|
112
|
+
/docs/datasheets/
|
|
113
|
+
/discs/games/
|
|
114
|
+
/discs/l3fs/
|
|
115
|
+
|
|
116
|
+
# Local scratch directory
|
|
117
|
+
/tmp/
|
|
118
|
+
|
|
119
|
+
# L3FS SCSI hard disc images -- regenerated on demand by the oaknut
|
|
120
|
+
# `disc` tool from Acorn distribution sources. The committed
|
|
121
|
+
# tests/assets/scsi/L3FS-KL.adl floppy is the only checked-in image.
|
|
122
|
+
/tests/assets/scsi/l3fs.dat
|
|
123
|
+
/tests/assets/scsi/l3fs.dsc
|
|
124
|
+
/tests/assets/scsi/l3fs-blank-20mb.dat
|
|
125
|
+
/tests/assets/scsi/l3fs-blank-20mb.dsc
|
|
126
|
+
|
|
127
|
+
disassembly/*
|
|
128
|
+
!disassembly/*.py
|
|
129
|
+
# Local machine-specific development notes and configuration (sensitive)
|
|
130
|
+
docs/local-*.md
|
|
131
|
+
local-*
|
|
132
|
+
**/local-*
|
|
133
|
+
|
|
134
|
+
# Local packaging build outputs (Linux bundle tarballs)
|
|
135
|
+
_artifacts/
|
|
136
|
+
|
|
137
|
+
# Integration tests are server end-to-end tests driven by the Python client;
|
|
138
|
+
# they resolve fresh against the source-tree client, so their locks are not committed.
|
|
139
|
+
integration_tests/*/uv.lock
|