Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
501 views

Unused imports in .NET

The VB.Net IDE allows me to scan for unused references. But I also have a lot of unused imports in my application. Is there a way to scan for unused imports in all classes, or does having an unused ...
5
votes
7answers
288 views

Find out which classes of a given API are used

In a Java Project of mine, I would like to find out programmatically which classes from a given API are used. Is there a good way to do that? Through source code parsing or byte code parsing maybe? ...
4
votes
4answers
145 views

Python import syntax

Does this: import foo as bar do the same thing as this? bar = __import__('foo') Is there ever a reason to use the latter one? I'm reading through someone elses code, I found the latter one and ...
3
votes
2answers
55 views

Python: Find which version of a function I'm using

I'm a little confused with my imports and I'd like to see which version of a function I'm using. Is there some way to get the filename where the implementation or the class the holds it?
3
votes
1answer
93 views

how to register dlls with a custom registration system and look into PEs of executables for imported dlls?

I want to write a C++ program which does the following input- executable files output-yes/no condition: if(if all the dlls imported by my executable are registered with my system ) yes else no ...
3
votes
3answers
216 views

Am I just abusing Python's import system or is this okay?

I'm building a web application with Twisted, and for the site resources I have a structure like this: /resources __init__.py file.py javascript.py images.py wsdl.py /pages ...
3
votes
4answers
389 views

Wildcard imports usage in Java and Scala

Recently I have heard statements like "you should never use wildcard imports" too often. So I want to ask community about this. Should wildcard imports really never ever be used in Java production ...
3
votes
1answer
533 views

Vim's omnicompletion fails with “from” imports in Python

Omnicompletion for Python seems to fail when there is a "from" import instead of a normal one. For example, if I have these two files: Test.py: class Test: def method(self): pass ...
3
votes
5answers
165 views

How do I determine which methods are used by a Java class

I need to provide a report of which APIs are used by our code, and exactly which methods are called. For a Windows DLL, I would use "dumpbin /imports" - is there an equivalent for a Java .class file? ...
2
votes
3answers
553 views

VB.NET to C#: Imports/using

Is there a way to "Import" a static class in C# such as System.Math? I have included a comparison. Imports System.Math Module Module1 Sub Main() Dim x As Double = Cos(3.14) ''//This ...
1
vote
1answer
154 views

IOKit IOPowerSources troubles

I am having a REALLY hard time using IOPowerSources, and the documentation along with it. My issue is that, well, I can't figure out the darned imports for IOPowerSources. I am reading from: ...
1
vote
1answer
701 views

How to use WebSockets in Scala using Play Framework?

I would like to use WebSockets in Scala and Play Framework. But I can't get the Echo-server example to work. What should I import for await() and disconnect()? The error I get is Error raised is : ...
1
vote
1answer
190 views

How can I import all unimported classes in Scala IDE?

When I use Java with Eclipse and write a class, sometimes I have to import classes. The fastest way to do that is with a keyboard shortcut: CtrlShiftO. But this keyboard shortcut seem to be broken in ...
1
vote
2answers
238 views

Making Eclipse Recognize Imports

I am trying to integrate Spring into my project in Eclipse. I am using Maven and have added the dependencies in my POM. While the maven build works, Eclipse does not recognize imports like the ...
1
vote
2answers
325 views

Getting Disk Size Properly

I am trying to get the physical device size of a connected USB flash drive. I have tried using WMI. ManagementObjectSearcher mosDisks = new ManagementObjectSearcher("SELECT * FROM ...
1
vote
2answers
303 views

pylint seems to not handle “from . import foo” style imports

If I do: from . import foo In a script and run pylint over it, I get: F: 1: Unable to import %r Is there a way a work around for getting pylint to understand this syntax?
1
vote
4answers
418 views

Import a DLL with C++ (Win32)

How do I import a DLL (minifmod.dll) in C++ ? I want to be able to call a function inside this DLL. I already know the argument list for the function but I don't know how to call it. Is there a way ...
1
vote
1answer
92 views

paths not being consistent python django

I'm trying to import sorl-thumbnail into my app in django. Now the way that i have the site set up, using mod_wsgi on centos5 with cpanel the path for the apps must have the project name when ...
1
vote
3answers
68 views

Documenting a File Format

We're developing an application that receives a lot of it's input from a custom file format we've defined. The input files are produced by an application being developed by a third party so naturally ...
1
vote
5answers
191 views

Problem with imports in java?

I'm having a problem with imports in one of my java applications. I've Taken a working JSP out of one Eclipse project, Jar'd up all the classes from that project and put it into a new project. In ...
0
votes
1answer
16 views

Eclipse doesn't offer to add import or show functions for android objects

Somehow I've screwed up my Eclipse installation. Used to be if I added a new instance of an Android object (say a TextView) and I right clicked on the error, it would offer to add the import. Also if ...
0
votes
2answers
82 views

how to add org.apache.commons.io.FilenameUtils to maven in intellij?

I should add org.apache.commons.io.FilenameUtils; to intellij 10. how can i add it to maven and use it in the code.I need to be able to use FilenameUtils in my code. i have already this : ...
0
votes
1answer
55 views

“Organize Imports” keeps removing my imports in Flash Builder

I often use the shortcut for Organize imports (CMD - SHIFT - O) in Flash Builder. Some times Flash Builder just removes all my imports (not the SDK) and I have to add them manually. Anyone else who ...
0
votes
1answer
186 views

Dumpbin.exe for Linux to view imports

I'm not sure my question makes sense in a linux way. I'm searching for something that would works similar to dumpbin.exe from Visual Studio toolkit. Basically I have an existing project with a bunch ...
0
votes
1answer
48 views

phpmyadmin/CSV(Excel) Problems

I have a excel workbook where the .csv file is outputted with quotes with this vba code: 'Set up Delimiters DELIMITER = "," QUOTE = """" 'Set up file to save, ask user for name GetFileName = ...
0
votes
0answers
52 views

Add Imports to Imports Table, is it Possible?

I'm coding in C, and I want to know if it's possible to Add Imports to Any Compiled EXE from an already Imported library, for example, the EXE Imports Kernel32.dll GetFileSize(), ...
0
votes
2answers
102 views

How do I share a python script's imports with another script?

Let's say I have a script1.py with imports. How can I share script1.py imports with script2.py? without copy and pasting.
0
votes
2answers
104 views

How do I distinguish between two imports with the same name in as3?

I have two ArrayUtil classes I need to access from the same class - they each come from external libraries and have different code, so I can't just combine them. How do I disambiguate them in the ...
0
votes
1answer
31 views

How can I achieve something like “from foo.bar import baz.qux”?

I have a few packages that include modules named util, so that it becomes difficult to tell which util module is referred to if you see something like this: util.some_func() What I would like to do ...
0
votes
2answers
454 views

How to import zip file in netbeans project

when I was trying import a zip file in my netbeans project, I get a error in this line import jericho-html-3.1.src.java.net.htmlparser.jericho.*; even though I added the zip file Libraries ...
0
votes
1answer
74 views

Using Python with a flexible remote library that resides in a different git repo?

I work on a project that uses a lot of different git repos. Some are open source and some are closed source. Often times there is python code written that would be useful for both open and closed ...
0
votes
0answers
202 views

sigar import fail

When I use sigar in my program, by import org.hyperic.sigar.* and then using Sigar main = new Sigar(); CpuInfo[] cpus = main.getCpuInfoList(); I get an unresolved compilation error. I've ...
0
votes
2answers
106 views

How can I transparently redirect a Python import?

I'm looking for a way to emulate symlinks for Python imports. I'd like to be able to unzip the following folder structure in-place without duplicating files: root ├─ python_lib │ └─ my_utils │ ...
0
votes
2answers
377 views

Why IntelliJ Idea's default import order is reversed, so that java.*, comes last?

I just want to know what the philosophy behind that is. Most programmers put java.* first. Why does Idea prefer to put it last? It makes unnecessary inconvenience when I try to persuade other team ...
0
votes
2answers
348 views

Problem with Marshal class

I was going through my Win32 class today to work on some long-needed improvements. I am stuck on my disk geometry code. On the var ob = (DiskGeometry)Marshal.PtrToStructure(geomp, typeof ...
0
votes
2answers
528 views

imports java.util.zip in a vb.net project

I need to import java.util.zip for my project to zip and unzip chosen files/folders in vb.net. But when i say imports java.util.zip, i get the error "Namespace cannot be found". I went in the add ...
0
votes
1answer
86 views

Working of “imports namespace”

I knew from here that we have to do the explicit imports for child namespace because imports will not include the child namespace. But my question is that if I do "imports System" whether it will ...
0
votes
1answer
112 views

Imports failing for pylint

I'm testing my project using pylint and currently getting fatal error when importing the internal apps into the project using. According to pylint, the import should be something like from ...
0
votes
3answers
235 views

Relative imports from __init__ in multi-file Django apps

I have a Django project located at /var/django/project/ where /var/django/ is in the PATH within that project I have: ___init__.py manage.py utils/ __init__.py tools.py utils/__init__.py ...
0
votes
3answers
164 views

Imports or Long Class format?

Should I use this. Imports System.IO Dim myStream As New Stream or this.. Dim myStream As New System.IO.Stream Does it make any difference to performance / memory usage?