Tagged Questions
1
vote
4answers
78 views
Python: Namespaces with Module Imports
I am learning Python and am still a beginner, although I have been studying it for about a year now. I am trying to write a module of functions which is called within a main module. Each of the ...
1
vote
0answers
32 views
List modules in namespace package
I'm trying to get Python to list all modules in a namespace package.
I have the following file structure:
cwd
|--a
| `--ns
| |--__init__.py
| `--amod.py
|--b
| `--ns
| |--__init__.py
| ...
14
votes
5answers
659 views
Namespaces without packages
In reorganising my code base I’d like to clean up my code sharing mechanism. So far I’m using source for lots of small, largely self-contained modules of functionality.
However, this approach suffers ...
1
vote
2answers
176 views
Multiple namespaces under same module in ZF2
I'm having trouble configuring multiple namespaces/classes under same module.
For example, I have a module called "Account", in which I'd like to include all account related classes (companies: ...
1
vote
0answers
45 views
How to access same multiprocessing namespace from different modules
I need to be able to create shared object with pySerial object in it. This object will be created by child process only once after finding device from list of locations. Other processes will use it in ...
0
votes
1answer
48 views
Is there a way to bypass the namespace/module name in Python?
If you have a module like module, can you bypass it and use the functions available inside without using the module?
I imported the module, but the compiler still complains not having to find ...
0
votes
0answers
44 views
Namespacing object notation vs module pattern
I'm a bit confused about namespacing and module pattern... is the same thing? In the next two pices of code, both buttons have the same functionality, then what's the difference? wich one is better to ...
2
votes
2answers
72 views
Rails class naming collision
In my rails application I have the following:
Post model
class Post < ActiveRecord::Base
# ...
end
Post model inside such a module
# lib/my_module/models.rb
module MyModule
module Models
...
1
vote
1answer
23 views
force module namespace qualification
VB.net allows you to skip the qualification of a function call with the module name:
Public Module EvalDataFetcher
Public Function JoinStr(ByVal values As IEnumerable(Of String)) As String
...
1
vote
0answers
42 views
using imageresizer in another orchard module not working
I want to use the Image Resizer Module
in the Nwazet.ZenGallery Module (ZenGallery.cshtml).
But somehow, it's not working. When I use the @Html.Thumnail(...) inside a view in my theme, it works, but ...
11
votes
1answer
171 views
How are words bound within a Rebol module?
I understand that the module! type provides a better structure for protected namespaces than object! or the 'use function. How are words bound within the module—I notice some errors related to unbound ...
2
votes
2answers
168 views
Rails 3 trouble with namespaces & custom classes (uninitialized constant)
I have a file in my Rails 3.2.11 project called app/queries/visible_discussions.rb which looks like the following:
class VisibleDiscussions
...
end
I'd like to namespace the query so that I can ...
0
votes
1answer
71 views
Javascript Define Module Method Assignment
I'm trying to add a define module method to my top-level namespace, which first defines the namespace. For example,
APP.define('modules.moduleName', function () {
return {name: 'Module 1' };
...
1
vote
1answer
75 views
Good practice sharing resources between modules? [closed]
I am reorganizing my code and therefore creating new namespaces. I'm changing "static" classes (classes with @staticmethod in each method) for modules. This is the way to go, right?
The problem is ...
0
votes
1answer
123 views
How to get all classes in namespace without manually loading the classes?
I'm looking for a way to list all classes defined inside a module (namespace).
Here is similar question regarding the problem:
How to get all class names in namespace in ruby?
but see the last reply, ...
4
votes
1answer
66 views
What are the implications of A::B class name in ruby?
I have a class Entity and inside this class I used to have an inner class called Config.
class Entity
class Config
end
end
The Config class has grown quite big so I decided to take it out into ...
1
vote
0answers
62 views
seemless dynamic plugin loading
I'm working on an extensible plugin subsystem for a framework, but I'm stuck on how to get the system to dynamically and seemlessly load plugins from within the plugins themselves. I already know how ...
1
vote
1answer
110 views
Creating a custom module in YUI3 using module pattern
In my module, I would like to make some variables and functions expose to the public, but I am not sure which way it should be written.
<script type="text/javascript">
YUI.add('my-module1', ...
0
votes
3answers
63 views
import python package when module is same name
I have a module blah.time where I do some sanity checks and wrapper functions around normal time and date operations:
import time
def sleep(n):
time.sleep(n)
When I call sleep, it just throws ...
1
vote
2answers
668 views
Magento calling my namespace block from Mage namespace
I've been at this for several hours now. Magento keeps trying to call my block from the Mage namespace instead of my own.
Error:
exception 'Mage_Core_Exception' with message 'Invalid block type: ...
1
vote
1answer
91 views
How to set a namespace in ruby at runtime?
I have an ActiveRecord based application that is used via command line utilities. Having the models namespaced in such an application is advantageous for keeping the Object namespace clean.
I'm ...
4
votes
1answer
125 views
modular programming in ocaml
I found something which I don't really understand while working on an ocaml project.
Suppose I'm using both the Array and List modules of OCaml standard library. They both implement the function ...
0
votes
1answer
60 views
XQuery: Two namespaces in the same module?
Is it possible to declare 2 namespaces and group 2 diferent group of functions in those, and then import them in the same main script?
e.g: Something like this in the main script
import module ...
3
votes
2answers
97 views
hierarchical namespaces in custom python modules
Tried searching the site, but cannot find an answer to my problem:
Lets say I have a module, named mymodule.py that contains:
def a():
return 3
def b():
return 4 + a()
Then the following ...
0
votes
2answers
347 views
Create a class at run time within a module/namespace
Creating a class at runtime is done as follows:
klass = Class.new superclass, &block
Object.const_set class_name, klass
Example:
class Person
def name
"Jon"
end
end
klass = Class.new ...
1
vote
1answer
103 views
Scalability of Python Module / Package system to large projects
I would like to have a nice hierarchy of modules for a large
project.. (Python seems to get in the way of this) I am confused about
the distinction of modules and packages and how they relate to the ...
0
votes
2answers
276 views
How do I make classes from a submodule available in a parent module's namespace?
Here's a python module. foo is in sys.path.
foo\
__init__.py
bar\
__init__.py
base.py
class Base(object)
derived.py
import foo.bar.base as base
...
1
vote
1answer
107 views
Python: What is a 'from import * safe' module?
I'm looking at "Idioms and Anti-Idioms in Python" in the part where it talks about the situation when a module "advertises itself as from import * safe".
What are examples of modules that are safe ...
3
votes
2answers
184 views
Python modules with identical names (i.e., reusing standard module names in packages)
Suppose I have a package that contains modules:
SWS/
__init.py__
foo.py
bar.py
time.py
and the modules need to refer to functions contained in one another. It seems like I run into problems ...
2
votes
2answers
245 views
Auto open a namespace in F#
Hi would like to know how to make the f# compiler to auto open a namespace automatically.
I have
namespace XXX
I have to add something here do(AutoOpen("XXX.YYY")) or something like that to make ...
2
votes
5answers
107 views
How to dynamically change nesting in Ruby?
I use modules as namespaces and want to dynamically populate them with classes, like:
module Module1
# ...
end
module Module2
# ...
end
[Module1, Module2].each do |the_module|
...
4
votes
4answers
517 views
What is the preferred way (better style) to name a namespace in Ruby? Singular or Plural?
What are for you the pros and cons of using:
FooLib::Plugins
FooLib::Plugins::Bar
vs.
FooLib::Plugin
FooLib::Plugin::Bar
naming conventions? And what would you use or what are you using? What is ...
8
votes
2answers
265 views
How do I deal with infix symbols looking ugly with qualified names
I am normally a firm believer of using namespaces (qualified module names) in most languages I program in since it is very good to know at a glance where a certain identifier came from. In Haskell ...
2
votes
1answer
93 views
Perl: modules colliding when both import the same module
Let's say I have two modules, A and Bee, each of which uses a third mod, Shared.
A:
package A;
BEGIN {
use Shared;
use Bee;
}
sub new {
my ($class) = @_;
my $self = {};
bless ...
0
votes
3answers
60 views
Finding the local name of a module from within that module
I'm trying to get the exact module name that a module was imported with, from inside that module. Something like this:
def install():
print 'Local module name is %s' % __localModuleName__
And ...
3
votes
4answers
241 views
Modules, classes and namespaces in Python
I have the following scenario:
I have abstract classes A and B, and A uses B to perform some tasks. In both classes, there are some "constant" parameters (right now implemented as class attributes) ...
0
votes
1answer
354 views
Doxygen python linking to functions
I'm using Doxygen to document my python module and I'm trying to get it to link to a function in-text. I can get it to link to the function's namespace ok but not to the function itself.
E.g. ...
11
votes
1answer
1k views
What does `__import__('pkg_resources').declare_namespace(__name__)` do?
In some __init__.py files of modules I saw such single line:
__import__('pkg_resources').declare_namespace(__name__)
What does it do and why people use it? Suppose it's related to dynamic importing ...
8
votes
3answers
397 views
Javascript Namespacing
I wish to make my javascript more more modular by splitting it up into different files and giving each file a 'sub' namespace like so.
subA.js
if(typeof ex == "undefined") {
var ex = {};
}
...
0
votes
1answer
330 views
Namespaces and Mixins
I'm trying to clean up our namespaces. Basically our setup is somewhat like
class myClass
include myModule1
include myModule2
@important_var #critical instance variable
Basically ...
6
votes
7answers
328 views
Use a class in the context of a different module
I want to modify some classes in the standard library to use a different set of globals the ones that other classes in that module use.
Example
This example is an example only:
# module_a.py
...
1
vote
1answer
389 views
Old code still being executed in ipython after files have been modified
In file1.py:
def foo():
import file2
print "I'm the old file1.py"
file2.bar()
if __name__ == '__main__':
foo()
In file2.py
print "I'm the old file2.py"
def bar():
print "I'm in the old ...
0
votes
1answer
107 views
Namespaces issue in settings.py
I'm trying to customize how applications gets integrated in a generic Django project. The question is about how applications setting files can be imported into the project settings.py, so to keep app ...
3
votes
2answers
217 views
How to resolve namespace clashes when including a module within a module in Ruby?
Here is what my code looks like:
module A
def foo
puts "A"
end
end
module B
include A
def bar
foo
end
end
class MyClass
include B
def foo
puts "X"
end
def self.test
...
13
votes
2answers
2k views
Is it possible to give a sub-module the same name as a top-level class?
Background:
ruby thinks I'm referencing a top-level constant even when I specify the full namespace
How do I refer to a submodule's "full path" in ruby?
Here's the problem, ...
5
votes
1answer
175 views
How to restrict the import of a Module in F# to a local scope?
Is it possible to locally restrict the import of a module, preferrably combining this with Module Abbreviations? The goal is to avoid polluting my current module with symbols from imports.
e.g. ...
1
vote
1answer
554 views
VBA - Import namespaces?
Is it possible to import namespaces in VBA? I'm writing Word macros and I want to put all functions inside Modules or Classes. But once I do that I see that I cannot reach the controls in the VBA form ...
1
vote
2answers
3k views
Problem with importing module and NameError: global name 'module' is not defined
Sorry, if this question has been asked before. I've looked around for quite a while and I haven't found a solution.
So I've created a class in the file ResourceOpen.py
class ResourceOpen():
...
6
votes
2answers
368 views
DIfference between Modules and Namespaces in F#
I have a problem in understanding the exact difference between modules and namespaces in F# and when using one or the other.
Well, they both are considered in order to incapsulate code and define a ...
1
vote
2answers
801 views
Trying to implement a Module using namespaces
I am using Ruby on Rails 3 and I am trying to implement a Module using namespaces.
In my lib/ folder I have the authorization.rb file with in this:
module Authorizations
def Authorizations.message
...


