forked from dln/python-libuuid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test cleanup. Added basic threaded test.
- Loading branch information
Daniel Lundin
committed
Jul 20, 2010
1 parent
1989586
commit 4c85c1e
Showing
3 changed files
with
35 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
from libuuid._uuid import * | ||
|
||
from uuid import UUID as _UUID | ||
from uuid import (NAMESPACE_DNS, NAMESPACE_OID, NAMESPACE_URL, NAMESPACE_X500, | ||
RESERVED_FUTURE, RESERVED_MICROSOFT, RESERVED_NCS, RFC_4122) | ||
|
||
|
||
|
||
from libuuid._uuid import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,13 @@ | |
__version__ = ".".join(map(str, __version_info__)) | ||
__author__ = "Daniel Lundin" | ||
__contact__ = "[email protected]" | ||
__homepage__ = "http://github.com/dln/pylibuuid/" | ||
__homepage__ = "http://github.com/dln/python-libuuid/" | ||
__docformat__ = "restructuredtext" | ||
|
||
import codecs | ||
import os | ||
from glob import glob | ||
|
||
|
||
try: | ||
import setuptools | ||
except ImportError: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters