For questions about the Python module named sys. This tag is also used for questions relating to the Sys namespace - the root namespace for the Microsoft AJAX Library, which contains all fundamental classes and base classes.

learn more… | top users | synonyms

0
votes
0answers
20 views

Heuristic to automatically detect thrashing [closed]

I was trying to understand memory management strategies and was going through paging and thrashing . I wanted to know whethere : It is possible to design a heuristic that will automatically detect ...
0
votes
0answers
12 views

IndexError: list index out of range with sys.argv[]

I have a small piece of code, where in I would like to take the file-name from the user while running the program. import sys def lines(f): print str(len(f.readlines())) def main(): file1 ...
0
votes
1answer
26 views

How do I add my project to 'sys.path' on windows? (trying to use disqus_export.py)

I'm trying to use the command disqus_export.py from 'django-disqus' to export my comments from django.contrib.comments to disqus. When I use disqus_export.py in my outer project folder(where ...
0
votes
0answers
33 views

Reading through sys.stdin and output sys.stdout

I am recursing through multiple directories to get some data out of each file and print it. The following is the code for that : def main(): for root, dirs, files in ...
1
vote
3answers
43 views

How do I get a line of the what the console returns (string) and place in a variable?

I have code that is using telnet and requires a login. If the login is incorrect, it returns "Incorrect login" to the console. I want to catch this exception and skip it so it doesn't stop the ...
0
votes
0answers
38 views

How can I link squidGuard-1.4_4 to rx-1.5 regular expression library in pfSense environment?

I'm in charge of a school firewall administration, which is running on pfSense with great squid and squidGuard. I was asked to implement some extensive regex processes that will enable students to ...
0
votes
1answer
27 views

Python import from paths

I'm working on this kind of structure por a project in python: main.py #must get all the classes from /handlers jhpy.py handlers/ #files must import jhpy without making meth code in the a, ...
0
votes
0answers
41 views

org.h2.jdbc.JdbcSQLException: Timeout trying to lock table “SYS”; SQL statement:

org.h2.jdbc.JdbcSQLException: Timeout trying to lock table "SYS"; SQL statement: CREATE MEMORY LOCAL TEMPORARY TABLE profileControl(profileid varchar(150),mastername varchar(150),propname ...
0
votes
3answers
70 views

taking multiline input with sys.stdin

I have the following function: def getInput(): # define buffer (list of lines) buffer = [] run = True while run: # loop through each line of user input, adding it to buffer ...
0
votes
2answers
74 views

Changing sys.stdin mode

How do I change the mode stdin is opened in? Specifically, we're piping CSV files to the python script to clean up the data, but with vertical tabs in the data it seems to need to be in ...
1
vote
0answers
87 views

Why is sys.getdefaultencoding() different from sys.stdout.encoding and how does this break Unicode strings?

I spent a few angry hours looking for the problem with Unicode strings that was broken down to something that Python (2.7) hides from me and I still don't understand. First, I tried to use u".." ...
0
votes
2answers
127 views

System Write Integer

I'm currently working on a small ASM program that grabs the process ID and then writes it out the screen. Here is the code: SECTION .bss Pid: resb 4 SECTION .text global start start: ...
0
votes
1answer
49 views

How to tell parallel-python processes in which folder to search for modules?

I am working on a computer cluster, which has NumPy 1.4.1 installed in the usual folder (/usr/lib64/....). As I want to use NumPy 1.7.0, I have installed it /.../myPath, and added export ...
1
vote
0answers
52 views

linux:use clone's function performance without use clone() or sys_clone, can I do that?

I would like to try execute clone's performance, but without calling clone() in linux(error said library not implemented in that structure). I try to check sys_clone but found it impossible since ...
2
votes
1answer
67 views

How to run a python script with options

I'm looking for an efficient way to write a python script that can be called using the hyphen-single-letter-space-parameter convention (e.g. python script.py -f /filename -t type -n 27, where f, t, ...
-1
votes
2answers
82 views

How to write to a file in the Directory “/sys/…”

How can i edit the file in the sys directory using JNI and NDk in android. Actually i Need to edit these file "/sys/class/gpio/gpio41/value".
0
votes
2answers
87 views

How to acess system file Using JNI

I need the sample code for how to edit the System Using Jni. i need to edit the file in the location /sys/class/gpio/gpio41/value I tried These codes But It Is Not Working. #include <jni.h> ...
0
votes
1answer
66 views

regular expression to give system argument for python

Essentially, I have a python script that takes a list of filenames as system arguments: filelist = sys.argv[1:] I'd like the file list to be all the files in the directory that begin with a certain ...
0
votes
1answer
64 views

Python logging config that writes to Qt widget

I haven't quite found the answer yet in other threads with similar titles. Let's say I have a logging.conf that looks like this: [loggers] keys=root,analyzer [handlers] ...
0
votes
0answers
26 views

Python system input accept only one character? [duplicate]

Possible Duplicate: Python read a single character from the user I would like to create a line of code that accepts only a single character as it's input. For example... var = ...
0
votes
1answer
38 views

Python alternating input and output

I'm trying to write a "game"where the user enters a move and the "cpu player" outputs its response, after which the user enters another move and so on. E.g. $ enter a move #cpu prompt 5 ...
0
votes
1answer
172 views

Sys Undefined with ScriptManager

I keep getting an Sys is undefined or Array is undefined error here: var __pendingCallbacks = new Array(); This happens in the dynamic version of the WebResource.axd file, or that's what the file ...
-1
votes
2answers
359 views

Where do i get BIOS.h file, to import in Mingw?

Mingw don't have BIOS.h file by default. And i'm doing system programming by using netbeans IDE and a third party tool mingw. . ? Can any one helps me, where do i get that file? This is the code. ...
0
votes
1answer
42 views

why one directory is the subdirectory of another in python system path?

my sys.path is like below: /homel/ychao/python/python_lib /usr/lib64/python27.zip /usr/lib64/python2.7 /usr/lib64/python2.7/plat-linux2 /usr/lib64/python2.7/lib-tk /usr/lib64/python2.7/lib-old ...
1
vote
1answer
55 views

new linux kernels, no lsm using lkms, no kernel hooks now what?

For security reasons, the kernel ceased to export characters necessary for writing security modules in the form of loadable kernel modules (Linux Kernel Module, LKM) starting with version 2.6.24. And ...
0
votes
2answers
73 views

Python: pygame.QUIT()

Just been messing around with pygame and ran into this error. CODE: import sys import pygame pygame.init() size = width, height = 600, 400 screen = pygame.display.set_mode(size) while 1: ...
1
vote
2answers
262 views

Why are the methods sys.exit(), exit(), raise SystemExit not working?

I need an alternative to kill the python script while inside a thread function. My intention is killing the server when the client enters a 0... Is this not working because the threads haven't been ...
1
vote
0answers
101 views

How to restore a hidden loadable kernel module from /sys/module and dealing with restoring holders_dir?

I'm playing with kernel module hiding on Linux Kernel 3.x. I try to hide and recover the module from /sys/module. Everything works fine on Kernel Version 3.0 and 3.2.6. I can load and unload the ...
2
votes
1answer
90 views

Python 2.7: reload(sys) disables error messages and print in Windows

I'm making a script that requires me to change the encoding format to "UTF-8". I found a topic here on Stachoverflow that said i could use: import sys reload(sys) sys.setdefaultencoding('utf-8') It ...
0
votes
1answer
91 views

How can I login oracle as sys account using oci or anyother libs

I am try to make a tool to help create user and imp database after oracle database installed. Because it is too difficult for my colleagues to deployment a new database by typeing commands. Then i ...
1
vote
2answers
101 views

Put an argument into a string [duplicate]

Possible Duplicate: Command Line Arguments In Python I am using Python 3.2. What I would like to do is basically a program that exports text into a .txt file, like this: [program name] ...
0
votes
1answer
119 views

command line optional arguments

so i am still coding and not even sure if this all works yet, but it's hard to test it when i can't even get it to run. this is my first time trying to have multiple optional inputs and every time i ...
0
votes
1answer
99 views

Where's the error in this simple pygame program? (sys.exit() not working) [duplicate]

Possible Duplicate: Pygame programs hanging on exit Ran this simple program: import pygame, sys pygame.init() screen = pygame.display.set_mode((800,600)) while True: #process input ...
-1
votes
1answer
308 views

adding a file path to sys.path in python

i had a file example_file.py , i want to use this example_file.py from various files, so i decided to add example_file.py to sys.path and importing this file in another file for using the ...
0
votes
1answer
2k views

System call implementation in Pintos

I want to implement the already defined system calls in PintOS ( halt(), create()...etc defined in pintos/src/lib/user/syscall.c ). The current system call handler in pintos/src/userprog/syscall.c ...
4
votes
5answers
588 views

How to make sys.argv arguments optional? (Python)

sys.argv takes arguments at the shell command line when running a program. How do I make these arguments optional? I know I can use try - except. But this forces you to insert either no extra ...
11
votes
1answer
1k views

Python memory usage of numpy arrays

I'm using python to analyse some large files and I'm running into memory issues, so I've been using sys.getsizeof() to try and keep track of the usage, but it's behaviour with numpy arrays is bizarre. ...
0
votes
0answers
93 views

Sys.loadScripts is undefined

I have a collection of javascript files which I use to make dynamic controls, and I'm trying to conditionally load only the required javascript files. While I've looked into Require.js and ...
1
vote
0answers
109 views

Complexity about charset, vi(vim), and secureCRT

Issues about charset are always puzzling to me when programming, especially when my programming environment differs from the production environment. I use secureCRT as my terminal tool. I can adjust ...
1
vote
0answers
76 views

“Sys is undefined” error in databinded page

I have a page with a formview that is generating the "Sys is undefined" error. This is the only page that have this problem, so it is not an web.config error or IIS configuration error. The page ...
1
vote
2answers
480 views

x86 assembly: printing integer to the console after mul (seg fault)

I'm trying to learn x86 assembly. The book I'm using is Assembly Language - Step by Step, Programming With Linux (and I'd have to say it's pretty good). I've learned a lot so far, but I feel as though ...
0
votes
1answer
341 views

Error When Connect to sys from toad or PL/SQL Developer

When I try to connect to my 10g Oracle database as sys from toad(9.0.1.8) or SQL Tools, I am getting error insufficient privileges I could connect to sys from sqlplus though. How can I resolve ...
1
vote
1answer
94 views

What is the unit in /sys/devices/system/node/node0/distance

The question says on the title. Does anyone know what the distance represent in this sys file?
6
votes
4answers
3k views

How to connect in java as SYS to Oracle?

I receive this error: java.sql.SQLException: ORA-28009: connection as SYS should be as SYSDBA or SYSOPER How to fix? (I need to be SYS). Thanks.
0
votes
2answers
572 views

File descriptors redirecting is stuck

In the daemon class example, which I implement, is used descriptors redirecting. sys.stdout.flush() sys.stderr.flush() si = file(self.stdin, 'r') ...
9
votes
2answers
8k views

Usage of sys.stdout.flush() method [closed]

What does sys.stdout.flush() do?
0
votes
1answer
710 views

Python pipe and command line arguments

I am very new to python and I got a script at my job I need to figure out. My script parses output of a some exe file (let's call it Mywork.exe ) which processes another binary files (let's call it ...
2
votes
3answers
93 views

How do you identify a driver executable?

How do you determine whether a given exe or dll or sys file is actually a driver? I mean what differentiates a driver from a normal executable?
0
votes
4answers
2k views

What does 'sys.argv' mean?

I am learning from code, and I am get confused by one of its lines which is: things = [float(arg) for arg in sys.argv[1:]] Omega_a, Omega_b, Delta_a, Delta_b, \ init_pop_a, init_pop_b, tstep, tfinal ...
0
votes
3answers
799 views

Python 3: Using subprocess Instead Of os.system

I have a string called variable and need to do the subprocess equivalent of os.system. I've tried to find a way to do this but have only found: variable2 = subprocess.Popen(args, ...

1 2