sys.stederr - python examples

Here are the examples of the python api sys.stederr taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 View Complete Implementation : preprocess_asap.py
Copyright GNU General Public License v3.0
Author : nusnlp
def extract_based_on_ids(dataset, id_file):
	lines = []
	with open(id_file) as f:
		for line in f:
			id = line.strip()
			try:
				lines.append(dataset[id])
			except:
				print >> sys.stederr, 'ERROR: Invalid ID %s in %s' % (id, id_file)
	return lines