~ubuntu-branches/ubuntu/raring/python3.3/raring-proposed

« back to all changes in this revision

Viewing changes to debian/script.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-22 06:14:01 UTC
  • Revision ID: package-import@ubuntu.com-20120322061401-vvrgvw3nvi68rtqq
Tags: 3.3.0~a1-1
* Python 3.3.0 alpha1 release.
* Update to 20120321 from the trunk.
* Update debian/copyright.
* Build-depend on expat (>= 2.1~).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
 
 
3
# Copyright (C) 2012 Colin Watson <cjwatson@ubuntu.com>.
 
4
#
 
5
# Permission is hereby granted, free of charge, to any person obtaining
 
6
# a copy of this software and associated documentation files (the
 
7
# "Software"), to deal in the Software without restriction, including
 
8
# without limitation the rights to use, copy, modify, merge, publish,
 
9
# distribute, sublicense, and/or sell copies of the Software, and to
 
10
# permit persons to whom the Software is furnished to do so, subject
 
11
# to the following conditions:
 
12
#
 
13
# The above copyright notice and this permission notice shall be included
 
14
# in all copies or substantial portions of the Software.
 
15
#
 
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
17
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
18
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 
19
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 
20
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 
21
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 
22
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
23
 
 
24
"""Trivial script(1) workalike, but without reading from standard input."""
 
25
 
 
26
import os
 
27
import pty
 
28
import select
 
29
import sys
 
30
 
 
31
filename = sys.argv[1]
 
32
command = sys.argv[2]
 
33
 
 
34
pid, master = pty.fork()
 
35
if pid == 0:  # child
 
36
    os.execlp("sh", "sh", "-c", command)
 
37
 
 
38
# parent
 
39
with open(filename, "w") as logfile:
 
40
    try:
 
41
        while True:
 
42
            rfds, _, _ = select.select([master], [], [])
 
43
            if master in rfds:
 
44
                data = os.read(master, 65536)
 
45
                os.write(1, data)
 
46
                logfile.write(data)
 
47
                logfile.flush()
 
48
    except (IOError, OSError):
 
49
        pass
 
50
 
 
51
os.close(master)