For issues that are specific to Python 2.6. If your question applies to Python in general, use the tag [python].

learn more… | top users | synonyms

1
vote
1answer
21 views

Unit of work is driven by external event. How to ensure one unit starts only after the previous one ends?

I am not sure how to refactor my app. I have read something about ChainedDefered, but I am lost at how to apply the technique to my situation. Any pointer/suggestions are welcome. I am using a third ...
1
vote
0answers
9 views

Access the CFD result file (*.uns) using python

I am beginner of python.I generally read the cfd results file (*.uns) in to the fieldview post processing software tool. Now I want to write a Python script to read the *.uns file directly and ...
0
votes
0answers
17 views

case-insensitive text search using gtk 2.2, python

I checked all the flags that can be passed to forward_search/backward_search method of gtk2+, but I could not find a way to search text case insensitively for my application written in gtk2+ python. ...
0
votes
1answer
32 views

Python: find which objects are marked for deletion by gc?

Let's say that I get following output from gc.get_count() gc.get_count() (2, 1, 0) What I want to know is that which are these three objects that gc.get_count() is counting? Can I get their id? ...
2
votes
1answer
45 views

Python: cracking the gc enigma

I am trying to understand gc because I have got a large list in a program which I need to delete to free up some badly needed memory. The basic question I want to answer is how can I find what is ...
0
votes
1answer
34 views

Python 2.6 : How to pass variable to mysql query if it must be placed above application(environ?

The only way to get a variable from the URL is via under the def application(environ, start_response): but the mysql code must be placed on top of this line. what are the known options ? extra ...
0
votes
1answer
22 views

start oozie job using python

I am trying to start a oozie job from python. i tried below steps but failing while posting/submitting the job.requests.post is not working. def submit(path): response = ...
2
votes
1answer
37 views

getslice deprecated in Python2.6, but still in use when subclassing tuple?

Consider the following example, executed under Python 2.6.6 (which I'm unfortunately stuck with at the moment): >>> class A: ... def __getitem__(self, index): ... ...
0
votes
0answers
18 views

Get Arguments To Program Remotely

I have this code: arguments = urllib.urlopen("http://website.com.info/file.php") command = location + "\file.exe " + arguments.read() I would like to be able to control the arguments remotely and ...
0
votes
1answer
24 views

Python Request HTTP Page and Use The Source Information

I'm looking to request a webpage with python and to get the source code to string (my page has only text for exmaple Year2012 with no html or other codes so if you do view source you see Year2012 this ...
0
votes
1answer
17 views

Make 2 HTTP-requests in a session through Tor with the same exit-node

I would like to use the library requests to make two HTTP-requests within a session. However I don't know whether the IP adresses will be the same for both HTTP-requests (within that session). Can ...
2
votes
9answers
82 views

Accumulate items in a list of tuples

I have a list of tuples that looks like this: lst = [(0, 0), (2, 3), (4, 3), (5, 1)] What is the best way to accumulate the sum of the first and secound tuple elements? Using the example above, I'm ...
0
votes
1answer
28 views

Program works fine in PyDev but gives invalid syntax in Ubuntu

This question must be quite easy but as I am new in both Ubuntu and Python, I have problems finding the solution. I have written a program in Python using PyDev on Windows. Everything works fine and ...
0
votes
1answer
20 views

import local package over global package

I'm working on a support library for a large Python project which heavily uses relative imports by appending various project directories to sys.path. Using The Hitchhiker's Guide to Packaging as a ...
0
votes
2answers
36 views

Can't get the UNICODE chars

I have encountered in a problem while i'm trying to get the UNICODE chars and to put them in a list. The problem is that i'm getting the hex code of the symbols and not the symbols themselves.. Can ...
2
votes
2answers
59 views

what really happen when modules imported?

I import a part of module instead of whole point because I am interested in accelerating my script. I have the file called theFile.py def goza(): print vari funct() vari = "called variable" ...
0
votes
2answers
34 views

Creating dictionary of dictionaries in python 2.6

I have a line of code in python2.7 that generates a dictionary of empty dictionaries: values=[0,1,2,4,5,8] value_dicts={x:{} for x in values} which throws a syntax error when run on python2.6. I ...
0
votes
3answers
49 views

python for loop and dictionary

in python and tryton I'm confused why I can't get the desired value I wanted; I don't know what's wrong. Lets say self.pendingapr has a field itemdescription and have 3 indexes, overall it has small, ...
7
votes
1answer
102 views

Fastest way to merge n-dictionaries and add values on 2.6 [duplicate]

I have a list of dictionaries that I would like to combine into one dictionary and add the values from each dictionary in the list. For example: ds = [{1: 1, 2: 0, 3: 0}, {1: 2, 2: 1, 3: 0}, {1: 3, ...
0
votes
3answers
46 views

Regex matches only a few elements from a list

Here's a python-code-snippet: import re VARS='Variables: "OUTPUTFOLDER=installers","SETUP_ORDER=Product 4,Product 4 Library","SUB_CONTENTS=Product 4 ...
0
votes
1answer
35 views

OSError: [Errno 32] Broken pipe with Django-pipeline

I have recently installed django-pipeline on CentOS 5.7. I have yuglify installed at /usr/local/bin/yuglify and have changed PIPELINE_YUGLIFY_BINARY to point there. However whenever I run ...
0
votes
0answers
22 views

Python incorrectly extracting month from string

Python is not extracting dates from strings properly. I am using this code: full_time = datetime.datetime.strptime(Datetime, "%m/%j/%y %H:%M") Everything is correct except for the month, which is ...
0
votes
1answer
21 views

Determine season given timestamp in Python using datetime

I'd like to extract only the month and day from a timestamp using the datetime module (not time) and then determine if it falls within a given season (fall, summer, winter, spring) based on the fixed ...
0
votes
1answer
55 views

Extract time from datetime and determine if time (not date) falls within range?

The problem is that I want it to ignore the date and only factor in the time. Here is what I have: import time from time import mktime from datetime import datetime def getTimeCat(Datetime): # ...
0
votes
0answers
31 views

Mutex in Python 2.6? Make Sure Only One Instance of the .exe Runing

I have a python 2.6 program used in windows (py2exe), I need to make sure it will there will be only one running checking the docs for python2.6 it says Mutex Is gone? What should I do to make sure it ...
0
votes
1answer
78 views

Changing labels in matplotlib polar plot

I am using matplotlib to create polar plots to represent Rose Diagrams. Right now the plot is getting created perfectly. I want to replace the angles being displayed on the axis with direction names: ...
1
vote
1answer
53 views

Partially initializing base class

Couldn't think of a better question title. Feel free to edit. I have a base class which is inherited by many classes (which in turn may have more sub-classes). For each class, I have a sequence of ...
1
vote
1answer
60 views

Sharing data between threads in Python

I'm working on a project which involves sending data over TCP. Using the ThreadedTCPServer I'm able to do that already. The server thread only needs to read incoming strings of data and set the value ...
1
vote
1answer
25 views

convert interger to formated binary string in python2.6

In python2.7 "{:010b}".format(25) would return '0000011001' giving a 10 bit binary string representation of the number 25. In python2.6 the same command returns ValueError: zero length field name in ...
1
vote
2answers
83 views

Reading files and regex with PYTHON

i'm beginner in python and in programming in general, I'd like to create a script in python that can tell if the message was sent or not. after reading log files I've noticed that each message has a ...
2
votes
4answers
62 views

Accessing instance variables using index

I have a class which keeps track of errors encountered during a search operation class SearchError(object): def __init__(self,severity=0,message=''): self.severity = severity ...
0
votes
2answers
47 views

Python 2.6 (Windows EXE) Keep Program Running?

I'm trying to keep my python program running but it closes right away. I have tried raw_input() but I get this error: EOFError: EOF when reading a line I put raw_input() at the end. What should I use ...
0
votes
1answer
51 views

xml parsing error in python 2.6

Below is the script / function which parses the xml posted below. The code workes fine on python3 and when i ported to 2.6 ts giving below error what could be the isuue here ? Traceback (most recent ...
0
votes
2answers
75 views

Python - Visibility of global variables from imported modules

I've run into a bit of a wall importing modules in a Python script. I'll do my best to describe the error, why I run into it, and why I'm tying this particular approach to solve my problem (which I ...
0
votes
0answers
24 views

How do I select a particular input device from device manager in Python

I run a python script to detect a particular multiple key sequence (Ctrl + Alt + T). Now when multiple USB keyboards are connected to the machine, I would like to detect input only from a given device ...
3
votes
4answers
100 views

Convert a List of Dictionaries into a Dictionary of Tuples

How do I convert a List of Dictionaries that looks something like this: [{'id':2, 'risk':'a'}, {'id':1, 'risk':'a'}, {'id':32,'risk':'aa'}, {'id':2, 'risk':'aa'}, {'id':7, 'risk':'a'}, ...
0
votes
0answers
44 views

Scrapy spider stopping unexpectedly

I have big list of urls saved in MySQL table which i would like to download with Scrapy and save resulting html to a table. The problem is that for some reason Scrapy will only process 1-2 records and ...
3
votes
4answers
65 views

Using Python to finding a string in a file and extracting the integer value on the same line.

I'm new to python and having the following issue. I have a text file (filename.dat) which provides information about my model. A summary of the relevant portions are as follows: NUMBER OF ...
0
votes
3answers
55 views

Matrix creation with list index out of range?

I'm trying to create a 3x10x10 matrix, and I feel like I've done it right. I'm trying to get the GridSet function to set all the values for me, and I'm getting an error that is "List index out of ...
2
votes
2answers
97 views

Replace \r\n for \n in CSV Writer

I am currently opening and writing a CSV file like this in python: with open('Data.csv', 'wb') as redata_csv: csv_writer = csv.writer(redata_csv, delimiter=',') however, each new line ends with ...
0
votes
2answers
36 views

Can anybody please confirm why an error is being returned in Python 2.6 for the following? Is this for 3.0 Syntax?

# Get the user's first name. first_name = input('Enter your first name: ') # Get the user's last name. last_name = input('Enter your last name: ') # Print a greeting to the user. print('Hello', ...
0
votes
2answers
64 views

Evaluation of Postfix notation

How to calculate the value of post fix notation: i tried with: import operator operator = { '+': operator.add, '-': operator.sub, '*': operator.mul, '/': operator.div, '%': operator.mod, ...
1
vote
2answers
62 views

How to write data without repeats?

I have been trying to figure this out for a few days now. I'm kind of learning as I'm going. The issue I'm having is I have gotten my script to randomly generate string of letters and numbers. I've ...
0
votes
5answers
59 views

Regex search doesn't find elements with content

I've got the following code: import re vars='"NAME=Product","TYPE=","VERSION=1.2","VISIBILITY=","SRC=","FOLDER=TRUE","Text=foo, containing, commas"' list = re.findall(r'\w+=".*?"', vars) for i in ...
3
votes
2answers
81 views

Pickle doesn't take my registered custom type reduce function into account on python 2.6

Given the following code: import pickle import copy_reg class A(type): pass class B(object): __metaclass__ = A def _reduce_a(a): print('Hey there') return a.__name__ ...
2
votes
4answers
88 views

Using singleton as a counter

I have an automation test, which uses function that creates screenshots to a folder. This function is called by multiple screenshot instances. On every test run, a new folder is created, so I don't ...
5
votes
1answer
60 views

FormSet using TypedChoiceField not coerced to int once every ~2000 requests

I'm using a FormSet that contains several forms that each have a quantity field which is defined like this: quantity = TypedChoiceField(coerce=int, required=False) I want to know whether at least ...
-2
votes
1answer
41 views

getting an error while executing the code

In the below code i want to print the lines which are between "first", and on those line searching for "new.txt" line.. when i am running i get an error : if "first" in lines[i+n]: IndexError: list ...
0
votes
2answers
58 views

Print the line between specific pattern

I want to print the lines between specific string, my string is as follows: my_string = ''' ##start/file1 file/images/graphs/main file/images/graphs file/graphs ##start/new new/pattern/symbol ...
0
votes
3answers
28 views

counting incidences of a number and associated value in two synchronized lists

I have two lists that are of the same length: alist = ['XX', 'HH', 'GG', 'XX', 'II', 'PP', 'LL', 'TT', 'KK', 'XX'] blist = [2, 3, 5, 5, 9, 8, 9, 4, 7, 2] I want to know what values in alist have ...

1 2 3 4 5 9