FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pre-commit/pre_commit/output.py at main · pre-commit/pre-commit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pre-commit
/
pre-commit
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1k
Star
15.5k
Code
Issues
18
Pull requests
8
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
pre-commit
/
pre_commit
/
output.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (25 loc) · 911 Bytes
Breadcrumbs
pre-commit
/
pre_commit
/
output.py
Copy path
File metadata and controls
33 lines (25 loc) · 911 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from
__future__
import
annotations
import
contextlib
import
sys
from
typing
import
Any
from
typing
import
IO
def
write
(
s
:
str
,
stream
:
IO
[
bytes
]
=
sys
.
stdout
.
buffer
)
->
None
:
stream
.
write
(
s
.
encode
())
stream
.
flush
()
def
write_line_b
(
s
:
bytes
|
None
=
None
,
stream
:
IO
[
bytes
]
=
sys
.
stdout
.
buffer
,
logfile_name
:
str
|
None
=
None
,
)
->
None
:
with
contextlib
.
ExitStack
()
as
exit_stack
:
output_streams
=
[
stream
]
if
logfile_name
:
stream
=
exit_stack
.
enter_context
(
open
(
logfile_name
,
'ab'
))
output_streams
.
append
(
stream
)
for
output_stream
in
output_streams
:
if
s
is
not
None
:
output_stream
.
write
(
s
)
output_stream
.
write
(
b'
\n
'
)
output_stream
.
flush
()
def
write_line
(
s
:
str
|
None
=
None
,
**
kwargs
:
Any
)
->
None
:
write_line_b
(
s
.
encode
()
if
s
is
not
None
else
s
,
**
kwargs
)
Back
|
FazBrowse Home
|
New Git URL