repo.or.cz
/
sunny256-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
std.c: Improve some comments
[sunny256-utils.git]
/
git-expand
blob
dd8aede56fc5fd381d25fc934ed2e1b88e245bbe
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
"""git-expand - Unpack Git object
5
6
File ID: 76189104-142e-11e3-8ac9-001f3b596ec9
7
License: GNU General Public License version 2 or later.
8
9
"""
10
11
import
sys
12
import
zlib
13
14
sys
.
stdout
.
write
(
zlib
.
decompress
(
sys
.
stdin
.
read
()))