The locals tag has no wiki summary.
2
votes
1answer
83 views
Expanding Custom Class node in Locals window silent crashes excel
The issue:
Similar to this issue but unable to find a solution I am trying to figure out how to fix this bug:
Viewing an object in Locals or Watch window causes excel to crash
The custom class is ...
4
votes
2answers
130 views
Python locals() for containing scope
TL;DR: I want a locals() that looks in a containing scope.
Hi, all.
I'm teaching a course on Python programming to some chemist friends, and I want to be sure I really understand scope.
Consider:
...
2
votes
5answers
75 views
iterate over function arguments and retain sort order in python
I need to call a Stored Procedure in python.
The wrapper function accepts n number of parameters.
Based on the parameter list, I need to quote or unquote the arguments. I also need to send a null ...
1
vote
0answers
91 views
Viewing an object in Locals or Watch window causes excel to crash
In Excel when I'm running some code and put a breakpoint in I can look at the values of things in the locals window. In the locals window, when I try to expand a object for the class I've created ...
6
votes
1answer
68 views
Python scoping in dict comprehension
>>> x = 'foo'
>>> {0: locals().get('x')}
{0: 'foo'}
>>> {0: locals().get('x' + spam) for spam in ['']}
{0: None}
What is the reason for this discrepancy in behaviour?
3
votes
3answers
68 views
Using globals() to create class object
I'm new in programming so please don't kill me for asking stupid questions.
I've been trying to understand all that class business in Python and I got to the point where could not find answer for my ...
4
votes
1answer
666 views
ExpressJS: What is the difference between app.local and res.local?
I'm trying to learn Express and in my app I have middleware that passes the session object from the Request object to my Response object so that I can access it in my views:
app.use((req, res, next) ...
0
votes
1answer
58 views
locals blank in Jade
I have a file which is setup to handle a file and set the title and locals variables for my jade template.
module.exports = {
handle_index : function(req, res) {
res.render('index', {
...
0
votes
1answer
55 views
django passing locals() to celery task
I am using python 2.7 and django 1.27, i am using celery for tasks.
I have this view
def my_view(request):
do_stuff()
local_1 = 1
local_2 = 4
celery_delayed_task(locals())
return ...
3
votes
2answers
157 views
Python - locals() and closure
I can not find an adequate explanation for this behavior.
>>> def a():
... foo = 0
... print locals()
... def b():
... print locals()
... b()
>>> a()
...
0
votes
3answers
133 views
Getting KeyError while iterating object names using locals()
I have 5 objects, mac5_le(), mac4_le and so on. I am trying to extract some value from each of the objects as follows,
for i in range(5,-1,-1):
m = locals()['self.mac'+str(i)+'_le.text()']
...
11
votes
2answers
126 views
Using locals() and format() method for strings: are there any caveats?
Are there any disadvantages, caveats or bad practice warnings about using the following pattern?
def buildString(user, name = 'john', age=22):
userId = user.getUserId()
return "Name: {name}, ...
2
votes
2answers
107 views
Scope inside Python exec
When a variable/function is defined inside an exec it seems to go to the locals() instead to the globals() how I can change this behaviour? This only happens when you pass the global and local ...
0
votes
1answer
195 views
How to get base properties and fields with values using reflection to work up the class hierarchy?
How can I get base class properties and fields using reflection, so that I can work UP the class hierarchy one level at a time? The goal is to build a tree display showing properties and fields with ...
0
votes
1answer
103 views
Passing locals to partial
I'm trying to provide a form to create a "message" for each feature on the features_index page. Unfortunately I get the error "Couldn't find Feature without an ID."
Have I passed the locals in ...
1
vote
3answers
229 views
How to dynamically modify a function's local namespace?
NB: This question assumes Python 2.7.3.
I'm looking for a sane approach to dynamically modify a function's local namespace, preferably in a way that adds the least clutter to the body function.
What ...
1
vote
2answers
271 views
Node.js: Require locals
What I want
Is it possible to pass locals to a required module?
For example:
// in main.js
var words = { a: 'hello', b:'world'};
require('module.js', words);
// in module.js
console.log(words.a + ' ...
3
votes
1answer
160 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 ...
0
votes
2answers
90 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 ...
10
votes
5answers
23k views
Rails 3, passing local variable to partial [duplicate]
Possible Duplicate:
Rails: confused about syntax for passing locals to partials
I want to pass local variable(which doesn't have relevant field in model) to partial.
# infos/index.html.erb
...
9
votes
4answers
2k 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 ...
0
votes
1answer
275 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
380 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
1answer
114 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 => ...
2
votes
1answer
493 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 => ...
3
votes
6answers
455 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
167 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 = ...
0
votes
2answers
348 views
When does localStorage get cleaned by the browser?
Is localStorage cleaned after I close my browser?
5
votes
3answers
3k 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 ...
1
vote
3answers
295 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 ...
6
votes
2answers
562 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
4answers
397 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
140 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
4answers
2k 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
3answers
145 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 ...
3
votes
1answer
765 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)
4
votes
4answers
3k 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 ...
6
votes
2answers
822 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 ...
0
votes
4answers
949 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 ...
6
votes
3answers
4k 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 ...
