Tagged Questions

8
votes
7answers
656 views

Confusing […] List in Python: What is it?

So I was writing up a simple binary tree in Python and came across [...] I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity loop (due to ...
6
votes
2answers
766 views

What do I use for a max-heap implementation in Python?

Python includes the heapq module for min-heaps, but I need a max heap. What should I use for a max-heap implementation in Python?
5
votes
2answers
1k views

Recursive variable definitions in Python and F# (probably OCaml, too)

Given these F# type declarations... type Message = | MessageA | MessageB | MessageC | MessageD type State = { Name:string NextStateMap: Map<Message,State> } ...is ...
1
vote
2answers
35 views

get also element that don't match fnmatch

I'm using a recursive glob to find and copy files from a drive to another def recursive_glob(treeroot, pattern): results = [] for base, dirs, files in os.walk(treeroot): goodfiles = ...
0
votes
1answer
362 views

sending object (recursive data structures) by XML-RPC in python

I need to send an object through XML-RPC in python. My object consist of composite data type to populate a tree structure: class Node(object): '''Composite data type ''' def __init__(self, pData, ...