Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
514 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 ...
6
votes
8answers
4k views

how to fetch the row count for all the tables in a SQL SERVER database

I was in search of a SQL Script , in order to determine , if there is any data(row count ideally) in any of the tables in a given database. The idea was to re incarnate the database , in case if ...
5
votes
2answers
822 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 ...
4
votes
2answers
232 views

howto create a filesystem like /proc?

I would like to create a pseudo filesystem like /proc to access an applications configuration. How could i achieve this or where could i find some introductory documentation about it?
3
votes
3answers
70 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
77 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
2answers
233 views

why my new user can login as sysdba in oracle?

I am new to oracle and just installed Oracle 11g R2 on windows 7 machine. Everything went fine and I am able to login using my sys as sysdba account. Now using the sys account I created a user as ...
3
votes
3answers
80 views

Subscribe to a file in /sys

Inotify won't trigger on file-changes in /sys - what ways are there to subscribe to changes in there?
3
votes
3answers
798 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
1answer
1k views

oracle: select * from tab for other types?

I can do a select * from tab; and get a list of tables (and apparently views) - are there similar views set up for other objects, such as sequences, etc?
3
votes
3answers
521 views

where is c++filt source code?

Does anyone known the link of c++filt source code. I want call c++filt in my code as a library.
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
1answer
56 views

Cannot locate find function called in a procedure

I am quite new to SQL Server. I have an issue where we have a stored procedure called sys.sp_MSallocate_new_identity_range (see part of logic below). It makes reference to two functions neither of ...
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
388 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
259 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
112 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
204 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
1answer
271 views

How to demangle C++ in GCC 2.96

When I compile the code with cxxabi.h, I got this error: $g++ -g -o bt bt.cpp linux.cpp -rdynamic -fnew-abi cc1plus: -fnew-abi not supported in gcc-2.96-RH [PS: I need do this in the source ...
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
3answers
1k views

Android: Write to /sys/ directory

I'm developing an application that is not intended to be released as a standard app. It'll be run on a single rooted device. I require the ability to write to a file in the /sys/ directory. The file ...
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
612 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
396 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
935 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
1answer
32 views

What are the differences between windows service and windows driver?

What are the differences between windows service and windows driver ? Don't they both run in kernel mode? Don't they both run in session0 in win vista&7
0
votes
0answers
85 views

ORA-09925: Unable to create audit trail file [closed]

When i run sql*plus and i try the following: connect sys as sysdba, and i fill in my password i get the following ERROR: ORA-09925: Unable to create audit trail file How can i fix this?
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
0answers
51 views

Using ICallbackEventHandler and UpdatePanel together in one page

I have got an usercontrol that uses ICallbackEventHandler to fill some comboBoxes . I want to use it in a page that have several updatepanel but not inside them.The user control and updatepanels are ...
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
2answers
321 views

Deep Search in the android file system for text files

I would like to search within the Android file system for finding text files containing specific information (e.g., the device's battery current and voltage). I tried to use the Astro File Browser ...
0
votes
1answer
94 views

WebResource.axd Suddenly Stopped Working In ASP.Net Offline Web App

Building an offline web app in VS2010. I have a master page with a navigation menu control. So far I've been able to add 4 new pages, each navigated to from this menu control. All has been added to ...
0
votes
3answers
93 views

What is the “god” sys table?

IF EXISTS (SELECT * FROM sys.all_objects WHERE name = N'SOMELOGIN') DROP USER [SOMELOGIN] GO Does not work because USER SOMELOGIN does not live in sys.all_objects. Is there a global "god" table I ...
0
votes
1answer
70 views

How to reduce ratio of user time to sys time for Rails 3 commands in Linux

I'm currently running Rails 3 on Ubuntu Linux and I'm getting what seems like really long response times for simple commands. For instance if I call db:rollback to drops a tiny table of 4 columns and ...
0
votes
3answers
403 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
0answers
205 views

load filter driver in windows 7

i am trying to load a .sys file in windows 7,but always it cann't connect to service manager with SERVICE_CREATE flag,but my code is working in XP very well. I can install Antivirues in windows ...
0
votes
1answer
122 views

Are the stored procedures parameters in a sys table? (Oracle)

I need some meta data about my stored procedures. I know oracle stores meta information of its objects in sys tables. systemtables Does oracle store the parameter information of stored procedures? ...
0
votes
1answer
931 views

Microsoft JScript runtime error: 'Sys' is undefined

I am having problems with an intermitent error in an ASP.Net Ajax enabled website. The error I am receiving is the old faithful "Microsoft JScript runtime error: 'Sys' is undefined" error. Googling ...
0
votes
1answer
528 views

asp.net 4.0 sys is undefined horror

[edit]: Figured out where it goes wrong. It has something to do with my Routing (note: im not using MVC but webforms). Here's the little piece in my global.asax which causes it: routes.Add( ...
0
votes
2answers
86 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
57 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.
-1
votes
7answers
1k views

How to delete all tables from db? Cannot delete from sys.tables

How can I perform this query on whatever way: delete from sys.tables where is_ms_shipped = 0 What happened is, I executed a very large query and I forgot to put USE directive on top of it, now I ...
-2
votes
1answer
26 views

Python 3.2 UnboundLocalError in Date to Day of the Week converter

Nooby Coder here! My assignment is to code something that prints the day of the week of any given date. My code is working fine but when I run anything that isn't in the correct format (i.e. "//2011" ...

1 2