mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 15:53:13 +01:00
cleanup
This commit is contained in:
parent
a5b98818c8
commit
8905b4fc72
@ -373,6 +373,7 @@ Changelog
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
* `0.2.7dev`_
|
* `0.2.7dev`_
|
||||||
|
* Updated Solarized color scheme.
|
||||||
* Windows: Added ``--output FILE`` to store output into a file
|
* Windows: Added ``--output FILE`` to store output into a file
|
||||||
(piping results into corrupted data on Windows).
|
(piping results into corrupted data on Windows).
|
||||||
* Proper handling of binary requests and responses.
|
* Proper handling of binary requests and responses.
|
||||||
|
BIN
httpie.png
BIN
httpie.png
Binary file not shown.
Before Width: | Height: | Size: 444 KiB After Width: | Height: | Size: 446 KiB |
Binary file not shown.
Before Width: | Height: | Size: 446 KiB |
@ -28,7 +28,7 @@ BINARY_SUPPRESSED_NOTICE = (
|
|||||||
|
|
||||||
def format(msg, prettifier=None, with_headers=True, with_body=True,
|
def format(msg, prettifier=None, with_headers=True, with_body=True,
|
||||||
env=Environment()):
|
env=Environment()):
|
||||||
"""Return a UTF8-encoded representation of a `models.HTTPMessage`.
|
"""Return `bytes` representation of a `models.HTTPMessage`.
|
||||||
|
|
||||||
Sometimes the body contains binary data so we always return `bytes`.
|
Sometimes the body contains binary data so we always return `bytes`.
|
||||||
|
|
||||||
@ -36,9 +36,9 @@ def format(msg, prettifier=None, with_headers=True, with_body=True,
|
|||||||
body is not included in the output and is replaced with notice.
|
body is not included in the output and is replaced with notice.
|
||||||
|
|
||||||
Generally, when the `stdout` is redirected, the output matches the actual
|
Generally, when the `stdout` is redirected, the output matches the actual
|
||||||
message as much as possible. When `--pretty` set (or implied),
|
message as much as possible (formatting and character encoding-wise).
|
||||||
or when the output is a terminal, then we prefer readability over
|
When `--pretty` is set (or implied), or when the output is a terminal,
|
||||||
precision.
|
then we prefer readability over precision.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user