Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
375 views

Visual Studio 2010 Locals Window Red Font

One of my Debug.Assert() fails so I get a window with the call stack and I click Retry. At this point, in the Locals window, certain rows have red text instead of black text in the Value column. What ...
6
votes
2answers
481 views

Getting local variables from a stack frame on the JVM

Is there any way to get a map or other data structure of the local variables in the current scope in on the JVM without using a debugger? That is, to get the locals of the current stack frame? I ...
6
votes
4answers
3k views

English Error Messages in German Visual Studio 2008 / ASP.NET

This might be a bit weird question, but I'll give it a shot: HELP, my Visual Studio 2008 / ASP.NET is giving me GERMAN error messages. Besides the fact that translations tend to be not as good as the ...
5
votes
2answers
229 views

Search Value in VS2010 Debug Locals and/or expand all Nodes

does someone might know how to search for a value in the locals in visual studio 2010 or at least how can I expand all nodes, subnodes?
3
votes
1answer
40 views

Customizing locals based on Devise scopes

I have a User and a Client model setup to use Devise with different sign-up workflows. I want to customize the locals based on the resource (Client or User). For example, instead of using the default ...
3
votes
3answers
1k views

rails fields_for render partial with multiple locals producing undefined variable

All, I am experiencing a problem with a standard fields_for setup. In my "_form" partial I have: <div class="comment_list"> <%= f.fields_for :comments do |cf| %> <%= render ...
3
votes
4answers
177 views

Getting local variables of function

I'm trying to get a local variable from a decorator. An example: def needs_privilege(privilege, project=None): """Check whether the logged-in user is authorised based on the given privilege ...
3
votes
2answers
100 views

Strange results in my locals window for VS2008

static void Main(string[] args) { List<string> myList = new List<string>() { "A", "B" }; string myString = "abc"; int myInt = 42; System.Xml.Linq.XElement root = new ...
3
votes
1answer
305 views

How does exec work with locals?

I thought this would print 3, but it prints 1: def f(): a = 1 exec("a = 3") print(a)
3
votes
4answers
1k views

Modifying locals in Python

locals is a built in function that returns a dictionary of local values. The documentation says: Warning The contents of this dictionary should not be modified; changes may not affect the ...
1
vote
5answers
2k views

Rails 3, passing local variable to partial

I want to pass local variable(which doesn't have relevant field in model) to partial. # infos/index.html.erb <%= render :partial => 'info', :locals => {:info => first, :img_style => ...
1
vote
1answer
171 views

Trouble passing locals in Partial

I have a partial called _avatar.html.erb I want to pass in an id as a local variable called entity_id which will be the id of an object. <% form_tag({:controller => "avatar", :action => ...
1
vote
6answers
205 views

Why is it bad idea to modify locals in python?

Related to this reply here. Locals' doc here. The docs mention that the dict should not change, not sure what it means but would locals be applicable in lab-reports where data won't change, for ...
1
vote
2answers
86 views

“%” character cause Error in strings substitution with locals()

I try to substitue strings with variables using locals() in python but I can find a way to use the % character inside the string without error. Here is a concrete example : color = ...
1
vote
3answers
136 views

Alternative to locals() in printing a table with a header

[Python 3.1] Edit: mistake in the original code. I need to print a table. The first row should be a header, which consists of column names separated by tabs. The following rows should contain the ...
1
vote
4answers
543 views

Python: load variables in a dict into namespace

I want to use a bunch of local variables defined in a function, outside of the function. So I am passing x=locals() in the return value. How can I load all the variables defined in that dictionary ...
0
votes
2answers
62 views

Pythonic? …Dynamically calling nested functions

Is this a a pythonic implementation? I'm calling nested functions dynamically from a string argument with wrappers to reduce the chance of calling a non-existent function. Here's an example where I ...
0
votes
1answer
105 views

Rails: Keeping a partial DRY when using locals

I have partial that is being reused by a couple controllers. Right now I have this partial set up to accept 2 objects which I don't want to do. -if @article .main-inner .article-header ...
0
votes
1answer
248 views

Unexpected render partial with locals behaviour

I have a partial with yeild blocks, which I set using content_for, when I render partial I am also trying to pass in locals. The locals never get picked up in the partial. <%= render :partial ...
0
votes
0answers
64 views

Databinding DataFieldValue Does Not Occur

2 Issues: When I bind data to checkboxlist, the text value works, the datavaluefield does not. Example: [input id="cboGroupLab_0" type="checkbox" name="cboGroupLab$0" /][label ...
0
votes
1answer
63 views

switch images with onclick

I have a partial called _avatar.html.erb I want to pass in an id as a local variable called entity_id which will be the id of an object. <% form_tag({:controller => "avatar", :action => ...
0
votes
3answers
114 views

Is there any way to affect locals at runtime?

I actually want to create a new local. I know it sounds dubious, but I think I have a nice use case for this. Essentially my problem is that this code throws "NameError: global name 'eggs' is not ...
0
votes
4answers
642 views

Getting local dictionary for function scope only in Python

I keep ending up at this situation where I want to use a dictionary very much like the one 'locals' gives back, but that only contains the variables in the limited scope of the function. Is there a ...
-1
votes
2answers
138 views

When does localStorage get cleaned by the browser?

Is localStorage cleaned after I close my browser?