-
Currently, win32api.GetUserName() returns an 8-bit string. The internal function should use GetUserNameW and return a unicode object.
2009-03-21 22:43:18 UTC in Python for Windows extensions
-
shlomme committed revision 6681 to the Natural Language Toolkit SVN repository, changing 35 files.
2008-10-12 16:16:30 UTC in Natural Language Toolkit
-
I have tried to post to the mailing list nltk-devel@lists.sourceforge.net for several times in a row, without success.
I was able to subscribe without problems and I receive all mail posted to the list, however, my own mails do not appear when sent from my mail address "shlomme@gmx.net".
I have been in contact with one of the list administrators, and they confirmed that none of the emails...
2008-03-27 19:52:44 UTC in SourceForge.net
-
Hi,
the attached archive contains a special runner called "EnhancedRunner" that supports mixing "traditional" test cases (public void, no arguments) with parameterized test cases, which can now be public void methods that take arguments.
An example:
class StringTest {
@Test
public void testConcat() {
assertEquals("ab", "a" + "b");
}
@ParamTest("strings")
public...
2007-04-26 08:09:05 UTC in JUnit
-
I've created a patch which remedies that problem.
However, it's not a complete fix. Before, only [A-Za-z0-9] where allowed
as characters in HTML tags in Javadoc and I've added "_" as well. However,
the specifier might not be pure ASCII at all, then this test will fail
again.
best,
Torsten.
2007-03-19 13:04:09 UTC in checkstyle
-
I've created a patch which remedies that problem.
However, it's not a complete fix. Before, only [A-Za-z0-9] where allowed as characters in HTML tags in Javadoc and I've added "_" as well. However, the specifier might not be pure ASCII at all, then this test will fail again.
best,
Torsten
File Added: underscore_params.diff.
2007-03-19 12:58:47 UTC in checkstyle
-
Discard the last comment, I didn't find the config option.
2007-03-19 10:14:08 UTC in checkstyle
-
Hi again,
the same applies to ? as wildcards for generics.
private Class
2007-02-01 13:03:05 UTC in checkstyle
-
Hi,
if I activate to check for whitespace around each ":" operator in inline conditionals, this rule will also be applied to colons in for each loops, ie this code will also receive a complaint:
for(String a: listOfString) {
...
}
Maybe some people want whitespace around the colon here, but it should be a separate option then.
best regards,
Torsten.
2007-01-31 16:53:31 UTC in checkstyle
-
Hi,
given a Javadoc comment and a method
/**
* Does something stupid.
* @param some type
* @param foo some parameter
*/
public void unFooize(KEY_T foo) {
...
}
Checkstyle 4.3 (used with Eclipse-CS) complains that is actually an unclosed HTML tag. I'm not very knowledgeable wrt generic parameter naming conventions in Java, but still this should not...
2007-01-31 16:29:31 UTC in checkstyle