Codebase list golang-pty / upstream/0.0_git20130701 doc.go
upstream/0.0_git20130701

Tree @upstream/0.0_git20130701 (Download .tar.gz)

doc.go @upstream/0.0_git20130701raw · history · blame

// Package pty provides functions for working with Unix terminals.
package pty

import (
	"os"
)

// Opens a pty and its corresponding tty.
func Open() (pty, tty *os.File, err error) {
	return open()
}