0
votes
2answers
31 views
Is there a overview of my existing shelves available in Visual Studio 2008 when shelving?
I'm using Visual Studio 2008 and discovered the shelve/unshelve function for me and became a great fan of it.
But there is one thing that annoys me. The shelve dialog lags a overview of my existing …
1
vote
3answers
84 views
Any way to use a tuple as key in a shelf? (Python)
Hi,
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')
…
1
vote
2answers
80 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
57 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 …
1
vote
2answers
153 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
5answers
2k views
What is Shelving in TFS? just a soft checkin so others can see code?
Hi,
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?
7
votes
4answers
374 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?
2
votes
1answer
283 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?
12
votes
2answers
1k 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)
