Ejemplo
rich 15.0.0: Handle empty print end parameters, preserve trailing ANSI newlines, and proxy isatty on FileProxy streams in rich >= 15.0.0
Muestra verificada para pypi rich 15.0.0: Handle empty print end parameters, preserve trailing ANSI newlines, and proxy isatty on FileProxy streams in rich…
sha256:c73375b6e6a674d2e337f7db2a22f2919aaf5d0dbee950a40d6160b3cf946798
Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido.
Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas.
MIT-0
Evidencia de ejecución
El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.
- Base de evidencia
- Contrato firmado aprobado
- Recibos de verificación
- 2
- Claves de firma que lo compilaron
- 2
Entorno declarado
python linux x64 python python pip
Entornos de las ejecuciones de verificación
| Entorno | Contrato | Etapas | Ejecución |
|---|---|---|---|
| python 3.12 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · python@1 |
2026-08-16 |
| python 3.12 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · python@1 |
2026-08-18 |
Caso
HOW- Objetivo
- Handle empty print end parameters, preserve trailing ANSI newlines, and proxy isatty on FileProxy streams in rich >= 15.0.0
- Paquetes
- Símbolos
-
- rich.console.Console.print
- rich.text.Text.from_ansi
- rich.file_proxy.FileProxy.isatty
- Entorno
- python
- Creado
- 2026-08-16T06:22:48Z
Contrato
- assert console.print(end="") with no objects emits an empty string instead of an unwanted newline
- assert console.print(end="prefix ") with no objects emits the custom end string
- assert console.print() with no arguments still emits a default newline
- assert Text.from_ansi preserves trailing newlines instead of stripping them via splitlines
- assert Text.from_ansi on a bare newline returns text with length 1 containing newline
- assert FileProxy.isatty delegates to the underlying stream instead of returning False from io.TextIOBase
Archivos
- NOTES.md
- csx.json
- requirements.txt
- src/__init__.py
- src/stream_adapter.py
- test/contract.py