Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
3answers
8k views

Can I unshelve to a different branch in tfs 2008?

Let's assume that some developer in my team shelved his changes that he did in branch A. And I am working on branch B. Can I unshelve his changes into branch B? (By GUI or command prompt)
43
votes
4answers
20k views

What is Shelving in TFS? just a soft checkin so others can see code?

Is shelving in TFS merely a soft checkin so other team members can see the source code? i.e. the shelved code will not be compiled right?
11
votes
4answers
1k views

What is the difference between shelve and check in in TFS?

What is the concept of each? When is it ok to shelve your changes instead of checking in?
10
votes
3answers
2k views

Unshelving in TFS: What does it mean?

Here's the part I get: When you shelve in TFS, it makes a server copy of the changes so they are not lost, but does not check them into the source code trunk/branch you are working on. Question: ...
7
votes
3answers
239 views

Ways to store and access large (~10 GB) lists in Python?

I have a large set of strings that I'm using for natural language processing research, and I'd like a nice way to store it in Python. I could use pickle, but loading the entire list into memory would ...
6
votes
5answers
148 views

Hg (Mercurial): any way to “set aside” the working copy for later?

Scenario: After your last commit, you decided to do some extensive refactoring of the codebase. After a time, you realize it is taking longer than expected, and you'd really rather put off the ...
5
votes
1answer
1k views

hg unshelve not working

Our team is just getting started with Mercurial. One of the first things we've started to play with is hg shelve. Locally, I have no problem shelving changes. It all works perfectly from what I can ...
4
votes
3answers
350 views

Is there anything wrong with creating a Python Pickle powered website?

I have been toying with this idea for quite awhile now, but haven't seen any information on people doing it. I have a small website project where I need to load and modify 1 object. This object is ...
4
votes
3answers
1k views

Python shelve module question

Does the Python shelve module have any protection built in to make sure two processes aren't writing to a file at the same time?
3
votes
1answer
57 views

How to implement a Python virtual filesystem using shelve

I have set up a Python script that simulates an OS. It has a command prompt and a virtual file system. I am using the shelve module to simulate the file system, being multi-dimensional in order to ...
3
votes
1answer
185 views

Does linux disk buffer cache make python cPickle more efficient than shelve?

Is IO more efficient, due to the linux disk buffer cache, when storing frequently accessed python objects as separate cPickle files instead of storing all objects in one large shelf? Does the disk ...
3
votes
2answers
779 views

assign a shelved changlist in perforce?

I'm really excited about Perforce's new shelve command. They say that you should be able to "reassign" the changelist to someone else, who can then unshelve it. How do I reassign a shelved ...
3
votes
2answers
357 views

Does Python's shelve module use memory-mapped IO?

Does anyone know if Python's shelve module uses memory-mapped IO? Maybe that question is a bit misleading. I realize that shelve uses an underlying dbm-style module to do its dirty work. What are ...
3
votes
2answers
734 views

In svn, can I revert a change and shelve it for later?

I have some changes commited a few commits back in my svn repository. Let's say HEAD is at r750 and I want to revert r745 without losing r746-r750. Is this possible? And, can I somehow save r745 and ...
2
votes
3answers
89 views

Mercurial - Working with Queues similar to Shelves?

I've recently started working with MQ as I like the idea of working on isolated patches and committing without affecting the repo until the changeset is refined enough. Before that, I used to work ...
2
votes
1answer
79 views

python: container for card catalog - sqlite, dict, other?

I'm developing a card catalog type application and Python and am trying to decide how to store the data. Not a web app. I don't expect a large app or a massive amount of data. One alternative is a ...
2
votes
1answer
152 views

How do I checkout a perforce shelf at the changelist it was shelved at?

I have a perforce shelf that's CL 1000. It was shelved by someone else at some unknown CL X. I'm at CL 2000. I'd like to sync to whatever X is and unshelf 1000 so my code is exactly the same as when ...
2
votes
2answers
281 views

remotely start Python program in background

I need to use fabfile to remotely start some program in remote boxes from time to time, and get the results. Since the program takes a long while to finish, I wish to make it run in background and so ...
2
votes
1answer
89 views

git shelving to remote repository

I would like to know if it's possible to use git with the following workflow: locally clone a remote repository make local changes commit them locally save them remotely so as not loose changes and ...
2
votes
3answers
162 views

Very basic persistence or data storage for a Python script

I have a script which processes a list of URLs. The script may be called at any time with a fresh list of URLs. I want to avoid processing an URL which has already been processed at any time in the ...
2
votes
2answers
140 views

How can we modify data that is in a shelve?

I have opened a shelve using the following code: #!/usr/bin/python import shelve #Module:Shelve is imported to achieve persistence Accounts = 0 Victor = {'Name':'Victor ...
2
votes
4answers
455 views

In python, looking for an alternative to Shelve (too slow for large dictionaries)

I am storing a table using python, and I need persistance. Essentially I am storing the table as a dictionary string to numbers. And the whole is stored with shelve ...
2
votes
2answers
155 views

shelve gives strange error

I'm trying to put some sites i crawled into a shelve, but the shelve won't accept any Site-objects. It will accept lists, strings, tuples, what have you, but as soon as i put in a Site-object, it ...
2
votes
3answers
223 views

Any way to use a tuple as key in a shelf? (Python)

I want to use a tuple (1,2,3) as a key using the shelve module in Python. I can do this with dictionaries: d = {} d[(1,2,3)] = 4 But if i try it with shelve: s = shelve.open('myshelf') s[(1,2,3)] ...
1
vote
2answers
83 views

How to serialize hash objects in Python

How can I serialize hash objects?, I'm using shelve to store a lot of objects. Hierarchy: - user - client - friend user.py: import time import hashlib from localfile import localfile ...
1
vote
2answers
84 views

Using python shelve cross-platform

I am hoping for a little advice on shelves/databases in Python. Problem: I have a database created on the mac, that I want to use on windows 7. I use Python 3.2, MacOS 10.7, and win 7. When I open ...
1
vote
2answers
64 views

Python 3.1 installed from Macports on 10.5.8 - shelve error (bug or not?)

I am running python 3.1.4 from macports and I am attempting to use the shelve module here. I can use it successfully on another dev. machine (different OS, etc.) so I am not sure what I may be doing ...
1
vote
1answer
207 views

How to view Shelved P4 Changes?

One of our team member (located in different region) has shelve changes in P4 with changelist 1234. Now, if I want to see what files are modified & what are the changes, how can I do that? ...
1
vote
2answers
57 views

Python: Attribute error with shelve when using 2 py modules

I'm trying out the shelve module and I'm running into some trouble. My intention is to have one module call a function in a second one which will modify a file inside a shelve. I made a prototype ...
1
vote
1answer
58 views

Control memory used by shelve

I am using shelve in Python to handle a huge dictionary that would not fit in the memory, as well as to achieve persistence. While running my code, which requires frequent retrieval and insertion ...
1
vote
0answers
123 views

Python Shelve Module Memory Consumption

I have been assigned the task of reading a .txt file which is a log of various events and writing some of those events into a dictionary. The problem is that the file can sometimes get bigger than ...
1
vote
2answers
174 views

Temporary Shelves?

I am designing a class that has undo/redo functionality and has to temporarily store a lot of data. I'm currently implementing a "temporary" file by overloading the del operator to delete the file ...
1
vote
2answers
126 views

allow a shelve object to be pickled in python, pypar and mpich2

I have some legacy python code that using pypar and mpich2 to transmit data between multiple nodes. For some reason the data is kept in shelves and pypar wants to pickle the shelve to send it to ...
1
vote
2answers
252 views

Is shelve in Python thread safe?

Is shelve in Python used for data persistence thread safe? If not, what's a good alternative? Thanks! :-)
1
vote
0answers
146 views

python shelve dbm.error?

I'm trying to add a dict of dicts to a shelve file: >>> d = shelve.open('index.shelve') >>> d <shelve.DbfilenameShelf object at 0x21965f0> >>> print(list(d.keys())) ...
1
vote
1answer
140 views

How do you erase the 3 shelve files in python 3?

I wrote a few unittests with shelve at http://code.google.com/p/filecache/ and python 2 saves exactly the filename I specifiy in shelve.open() but in python 3 I get 3 different files "bak", "dat" and ...
1
vote
1answer
173 views

TFS - Is it possible to link a shelve to a work item? Automatically? (And more)

Hmm I think the question itself is pretty straight-forward... In Team Foundation 2010, is it possible to link a shelveset to a work item in some way ? If so, is it possible to automatically create ...
1
vote
2answers
133 views

Easy way to delete a shelve .dat file left behind by my Python program?

So I have a python program that ends up leaving a .dat file from the shelve function behind after execution. I would like my program to delete or clear that file once it is done. My textbook only ...
1
vote
1answer
505 views

Visual Studio 2008 TFS Shelve/Unshelve changes stopped working and hangs VS

Greetings. This is second time I've actually spotted this problem with VS 2008 TS with TFS addon installed on top. The problem is that at some point, when you actively work with Shelve/Unshelve ...
1
vote
4answers
452 views

Really weird issue with shelve (python)

I create a file called foo_module.py containing the following code: import shelve, whichdb, os from foo_package.g import g g.shelf = shelve.open("foo_path") g.shelf.close() print ...
1
vote
2answers
231 views

Problem with shelve module?

Using the shelve module has given me some surprising behavior. keys(), iter(), and iteritems() don't return all the entries in the shelf! Here's the code: cache = shelve.open('my.cache') # ... ...
1
vote
1answer
194 views

Is there an easy way to use a python tempfile in a shelve (and make sure it cleans itself up)?

Basically, I want an infinite size (more accurately, hard-drive rather than memory bound) dict in a python program I'm writing. It seems like the tempfile and shelve modules are naturally suited for ...
0
votes
1answer
34 views

Shelve Code gives KeyError

I wanted to use the following code from here: How can I save all the variables in the current python session? import shelve T='Hiya' val=[1,2,3] filename='/tmp/shelve.out' my_shelf = ...
0
votes
0answers
56 views

concurrency issues with event and lock python

My critical region is a shelve object and I'm using a combination of event and lock to keep the threads separated. However this isn't working. By that I mean the process hangs, I have an unchecked ...
0
votes
2answers
142 views

python shelve … bsddb deprecated … how to get shelve to use another database?

I have an app developed in python 2.7.2 on OS X. I use the module shelve and seems to default to bsddb on the mac. The program won't run on a Windows 7 machine with ActiveState python 2.7 because the ...
0
votes
2answers
72 views

Easiest way to add a function to existing class

I'm using the python's built-in shelve module to manage some simple dictionaries. The problem I'm having is I want to use with shelve.open(filename) as f:, but when I try it claims DbfilenameShelf has ...
0
votes
1answer
77 views

Shelve module in Python 3.1.1

I'm new to Python and learning through the O'Reilly "Learning Python" series. I'm stuck on a shelve example and can't figure out why the program doesn't work. I'm trying to build some sample data ...
0
votes
1answer
80 views

How to populate shelf with existing dictionary

Lets say I have a large, 100s of megabytes, dictionary that I want to make into an on disk shelve. I'm using pypar to utilize MPI to generate cleaned bits of a master list. What's the best way to ...
0
votes
3answers
270 views

How to keep uncommitted changes in a local mercurial repository, while still pushing/pulling? Using hgeclipse

The biggest issue I am having is that if i'm working on some files that I don't want to commit, I just save them.. I then have other files I want to push to the server, however if someone else has ...
0
votes
0answers
44 views

Custom Shelve Implementation in Python

I am very new to Python.A have a requirement to use a custom Shelve implementation where it can be backed by MySQL in stead of FileSystem. The requirement looks a bit odd as you may think if I need a ...

1 2