Tagged Questions

14
votes
5answers
515 views

Python: Which encoding is used for processing sys.argv?

What encoding are the elements of sys.argv in, in Python? are they encoded with the sys.getdefaultencoding() encoding? sys.getdefaultencoding(): Return the name of the current default string ...
11
votes
1answer
7k views

Python's sys.path value

Where is Python's sys.path initialized from? UPD: Python is adding some paths before refering to PYTHONPATH: >>> import sys >>> from pprint import pprint as p ...
5
votes
2answers
824 views

Python: Why does `sys.exit(msg)` called from a thread not print `msg` to stderr?

Today I ran against the fact, that sys.exit() called from a child-thread does not kill the main process. I did not know this before, and this is okay, but I needed long time to realize this. It would ...
3
votes
3answers
71 views

Python `print` passing extra text to sys.stdout?

This is probably something stupid I am missing but it has really got me hung up on a larger project (c extension) that I am writing. Why is print "Hello, World!" passing None and an extra \n to ...
3
votes
2answers
80 views

Executing system commands in python

I have experience with perl for writing scripts, which made it easy for me executing linux commands by using back-ticks. I was wondering, how can I do this Python ? Is there a special way for ...
3
votes
3answers
812 views

Capture stdout from a script in Python

suppose there is a script doing something like this: # module writer.py import sys def write(): sys.stdout.write("foobar") Now suppose I want to capture the output of the write function and ...
3
votes
2answers
117 views

Why is this the output of this python program?

Someone from #python suggested that it's searching for module "herpaderp" and finding all the ones listed as its searching. If this is the case, why doesn't it list every module on my system before ...
2
votes
3answers
46 views

Running Another program from python

I want to call a program multiple times from a python code, and save the output of that program in a text file. My first problem right now is just calling the other code. I have to redirect to a ...
2
votes
2answers
397 views

How to finish sys.stdin.readlines() input?

This might be a silly question, but as I can't find an answer, I have to ask it. In interactive python I want to process a message which i get with: >>> message = sys.stdin.readlines() ...
2
votes
3answers
2k views

Python Import from parent directory

I have a Python class we'll call ClassA and another Python class which is supposed to import ClassA which we'll call ClassB. The directory structure is as follows: MainDir ../Dir ..../DirA/ClassA ...
2
votes
2answers
260 views

How to poll a file in /sys

I am stuck reading a file in /sys/ which contains the light intensity in Lux of the ambient light sensor on my Nokia N900 phone. See thread on talk.maemo.org here I tried to use pyinotify to poll ...
1
vote
1answer
24 views

Why Does Using the Python-YQL Module Change sys.path[0] to sys.path[1]?

When I import the python-yql (Yahoo Query Language) module into my Python project, the string representing the local directory path from which the Python script is envoked, which is normally stored in ...
1
vote
1answer
52 views

sys.exc_info or sys.last_*?

Should I prefer sys.exc_info() over sys.last_value and friends (sys.last_type, sys.last_traceback)?
1
vote
1answer
114 views

How can I close pygames without closing tkinter?

So I am trying to use Tkinter to receive a text input, and then run pygames from that to do an animation. I get an error though when I close Pygames. A simplified version of how I plan to use ...
1
vote
3answers
207 views

size of a python file object and seek()

I created a file with the following entry, returned by file.read() 'abcd\nefgh\n1234\nijkl\n5678\n\nend' I open the file to read now, with 'f' as handler. f.read() returns the above. f.tell() ...
1
vote
3answers
327 views

python - sys.argv and flag identification

when I accept arguments how do I check if two show up at the same time without having a compound conditional i.e. #!/usr/bin/python import random, string import mymodule import sys z = ' ...
1
vote
4answers
3k views

Permanently add a directory to PYTHONPATH

Whenever I use sys.path.append, the new directory will be added. However, once I close python, the list will revert to the previous (default?) values. How do I permanently add a directory to ...
1
vote
4answers
619 views

Problem with sys.argv[1] when unittest module is in a script

I have a script that does various things and access paramenters using sys.argv but when the script gets to the unittest part of the code it says there is no module for this. The script that I have is: ...
1
vote
1answer
397 views

Cant get __import__() to dynamically import a module in python - I know this cause it doesn't show up in sys.modules

Wrote a small script - just trying to get used to the os, sys, and some other common modules/libraries available to python at install. The gist: The script is designed to search the python directory ...
1
vote
2answers
940 views

Is it possible to write to a python frame object as returned by sys._getframe() from python code running within the interpreter?

Apropos of This question, there is a bit of scaffolding within the interpreter to inspect frame objects, which can be retrieved by sys._getframe(). The frame objects appear to be read only, but I ...
0
votes
2answers
71 views

Can't append x86 Python 2.7 path

I'd like to have a module in python27\scripts\ added to the list in the path browser - tried the syntax from here: http://stackoverflow.com/a/3402196 and here: ...
0
votes
1answer
72 views

Python will not read sys.argv

import sys print sys.argv[1] hi, this may seem very basic but I can't get Python to read in anything from the command line. thats the code above and what I type is: myfile.py ...
0
votes
1answer
128 views

Open PDF with default program in Windows 7

I have a program in which the help documentation is in a .pdf in the same folder as the .py module. I need the program to open the .pdf with the system's default PDF reader. I am using this code in ...
0
votes
2answers
45 views

python: permanent execution program date dependant

I wrote a script.py collecting data from the web from monday to friday. The script is usually executed from another script in the main function. I want it to close on friday and open monday ...
0
votes
3answers
408 views

python: sys.argv[0] meaning in official documentation

Quoting from docs.python.org: "sys.argv The list of command line arguments passed to a Python script. argv[0] is the script name (it is operating system dependent whether this is a full pathname or ...
0
votes
2answers
89 views

why 'setprofile' print this

import sys def a(): print 'aaa' def profiler(frame, event, arg): print event, frame.f_code.co_name, frame.f_lineno, "->", arg # profiler is activated on the next call, return, or exception ...
0
votes
1answer
274 views

Python equivalent of PyErr_Print()

What is the Python API equivalent of PyErr_Print(), from the C interface? I'm assuming a call in either the sys, or traceback modules, but can't find any functions therein that make calls to ...
-1
votes
1answer
58 views

How to open files given as command line arguments in python? [closed]

I want my .py file to accept file I give as input in command line. I used the sys.argv[] and also fileinput but I am not getting the output.
-2
votes
1answer
83 views

Writing to file with sys.stdout in python

ascii85.encode(file('/work/file1'), sys.write('/work/file2') I am trying to write to a file with this code using sys.stdout, but it is not writing. How do I fix the code to write to a file?
-4
votes
3answers
834 views

delete *.pyc continuation

As a follow-up to this question, I have a new question: What is happening internally in os.remove(module_name) and del sys.modules["module_name"]? I need an urgent help for this.Please help me out. ...
-6
votes
1answer
103 views

How to what added in sys.path.append? [closed]

I'm importing file from other folder. But importing a different file. Scripting -- Python 2.7 OS -- Windows XP