Tagged Questions

30
votes
10answers
5k views

What can you use Python generator functions for?

I'm starting to learn Python and I've come across generator functions, those that have a yield statement in them. I want to know what types of problems that these functions are really good at ...
11
votes
1answer
488 views

Python Generator Function Names — is a prefix helpful?

Most functions are easy to name. Generally, a function name is based on what it does or the type of result it produces. In the case of a generator function, however, the result could be a iterable ...
4
votes
3answers
628 views

How to clone a Python generator object?

Consider this scenario: #!/usr/bin/env python # -*- coding: utf-8 -*- import os walk = os.walk('/home') for root, dirs, files in walk: for pathname in dirs+files: print ...
2
votes
2answers
226 views

Can a Python function take a generator and return generators to subsets of its generated output?

Let's say I have a generator function like this: import random def big_gen(): i = 0 group = 'a' while group != 'd': i += 1 yield (group, i) if random.random() < 0.20: group ...
2
votes
5answers
542 views

Can I be warned when I used a generator function by accident

I was working with generator functions and private functions of a class. I am wondering Why when yielding (which in my one case was by accident) in __someFunc that this function just appears not to ...
1
vote
1answer
215 views

Python generator methods, deepcopy and copy

I am trying to avoid the use of deepcopy in a custom class (a Graph class) The graphs have few attributes, such as vertices, edges, etc. and several generator methods (methods with yield). I need ...
1
vote
1answer
101 views

Using a Simulation (MyHDL) and wxPython together

I am using the package MyHDL to do hardware simulation, but I want to put a GUI around it so that users can interactively change signals and see the other signals update. The problem is, MyHDL uses a ...
1
vote
2answers
216 views

Fibers in Python

I'm looking for a very simple way to implement fibers in Python. I'm sure there's a really simple way to do it using generators, but my mind is crapping out on me. This isn't for a huge application, ...
1
vote
2answers
395 views

python generator function getting executed twice?

I'm using a python generator function to provide me with a list of images in the current directory. However I see the function is giving out the entire list twice instead of one time and I have no ...
0
votes
1answer
79 views

Generator function with pymongo

I am trying to make a generator function that yields an item on each call, however I keep getting the same item. Below is my code: 1 from pymongo import Connection 2 3 connection = ...
0
votes
0answers
63 views

SpringPython and generator functions

I want to decompose the workflow of my Python application into generator functions, as it is done in Part 2 of "Generator Tricks For Systems Programmers" presentation by David M. Beazley. I also want ...
0
votes
1answer
178 views

Left hand side of assignment with infinite generators

Sorry to double my earlier question, but I thought to ask specific data which would solve the problem. I want this result tuple_of_vars = (item for _, item for zip(tuple_of_vars, new_vals_generator)) ...