]> granicus.if.org Git - python/log
python
14 years agoFix test_sys about fs encoding for Windows and Mac OS X
Victor Stinner [Thu, 19 Aug 2010 11:23:47 +0000 (11:23 +0000)]
Fix test_sys about fs encoding for Windows and Mac OS X

 * Check fs encoding value on Windows
 * Ignore LANG= test on Windows and Mac OS X (fs encoding is hardcoded on these
   platforms)

14 years agoFix test_os: workaround #8611 bug
Victor Stinner [Thu, 19 Aug 2010 11:17:12 +0000 (11:17 +0000)]
Fix test_os: workaround #8611 bug

14 years agoDecode NIS data to fs encoding, using the surrogate error handler.
Martin v. Löwis [Thu, 19 Aug 2010 09:11:51 +0000 (09:11 +0000)]
Decode NIS data to fs encoding, using the surrogate error handler.

14 years agoFix Issue9638 - remove dead code from py3k imaplib
Senthil Kumaran [Thu, 19 Aug 2010 07:02:20 +0000 (07:02 +0000)]
Fix Issue9638 - remove dead code from py3k imaplib

14 years agoCreate os.fsdecode(): decode from the filesystem encoding with surrogateescape
Victor Stinner [Thu, 19 Aug 2010 01:05:19 +0000 (01:05 +0000)]
Create os.fsdecode(): decode from the filesystem encoding with surrogateescape
error handler, or strict error handler on Windows.

 * Rewrite os.fsencode() documentation
 * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING
   environment variable

14 years agowhat's new 3.2: use :mod:
Victor Stinner [Wed, 18 Aug 2010 23:41:33 +0000 (23:41 +0000)]
what's new 3.2: use :mod:

14 years agotest_sys: move tests at the right place
Victor Stinner [Wed, 18 Aug 2010 22:44:15 +0000 (22:44 +0000)]
test_sys: move tests at the right place

filesystem encoding is not related to sys.sizeof()

14 years agoFix typo
Éric Araujo [Wed, 18 Aug 2010 22:35:23 +0000 (22:35 +0000)]
Fix typo

14 years ago#7647: add ST_RDONLY, ST_NOSUID constants to os module.
Andrew M. Kuchling [Wed, 18 Aug 2010 22:30:34 +0000 (22:30 +0000)]
#7647: add ST_RDONLY, ST_NOSUID constants to os module.
(Also fix a name ordering in the ACKS file.)

14 years agoFix indentation level
Éric Araujo [Wed, 18 Aug 2010 22:29:54 +0000 (22:29 +0000)]
Fix indentation level

14 years agoFix PyUnicode_EncodeFSDefault() indentation
Victor Stinner [Wed, 18 Aug 2010 22:26:50 +0000 (22:26 +0000)]
Fix PyUnicode_EncodeFSDefault() indentation

14 years agoImprove error message if the command is not decodable
Victor Stinner [Wed, 18 Aug 2010 22:23:22 +0000 (22:23 +0000)]
Improve error message if the command is not decodable

14 years agoAdd more tests to unicodedata with large code points
Amaury Forgeot d'Arc [Wed, 18 Aug 2010 22:07:15 +0000 (22:07 +0000)]
Add more tests to unicodedata with large code points
(the other functions where not affected by the recent change)

14 years agoFix reindent-rst.py: it works on binary files
Victor Stinner [Wed, 18 Aug 2010 21:59:12 +0000 (21:59 +0000)]
Fix reindent-rst.py: it works on binary files

14 years agoIssue #8622: Add PYTHONFSENCODING environment variable to override the
Victor Stinner [Wed, 18 Aug 2010 21:23:25 +0000 (21:23 +0000)]
Issue #8622: Add PYTHONFSENCODING environment variable to override the
filesystem encoding.

initfsencoding() displays also a better error message if get_codeset() failed.

14 years agoFix stupid typo in test.
Amaury Forgeot d'Arc [Wed, 18 Aug 2010 21:12:52 +0000 (21:12 +0000)]
Fix stupid typo in test.

14 years agoDecompose TESTFN_UNICODE on Mac OS X
Victor Stinner [Wed, 18 Aug 2010 21:06:23 +0000 (21:06 +0000)]
Decompose TESTFN_UNICODE on Mac OS X

14 years agoIssue #5737: Add Solaris-specific mnemonics in the errno module. Patch by
Antoine Pitrou [Wed, 18 Aug 2010 21:05:19 +0000 (21:05 +0000)]
Issue #5737: Add Solaris-specific mnemonics in the errno module.  Patch by
Matthew Ahrens.

14 years ago#5127: Even on narrow unicode builds, the C functions that access the Unicode
Amaury Forgeot d'Arc [Wed, 18 Aug 2010 20:44:58 +0000 (20:44 +0000)]
#5127: Even on narrow unicode builds, the C functions that access the Unicode
Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept
and return characters from the full Unicode range (Py_UCS4).

The differences from Python code are few:
- unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit()
  now return the correct value for large code points
- repr() may consider more characters as printable.

14 years agoIssue #9433: The "-j" option to regrtest now works under Windows too.
Antoine Pitrou [Wed, 18 Aug 2010 20:44:14 +0000 (20:44 +0000)]
Issue #9433: The "-j" option to regrtest now works under Windows too.
It is not sure it will be beneficial, though, since process launching is
more expensive under Windows than it is under Linux.

14 years agoFix Issue672656 - Securing pydoc server.
Senthil Kumaran [Wed, 18 Aug 2010 19:32:21 +0000 (19:32 +0000)]
Fix Issue672656 - Securing pydoc server.

14 years agoRestore GIL in nis_cat in case of error.
Martin v. Löwis [Wed, 18 Aug 2010 16:12:23 +0000 (16:12 +0000)]
Restore GIL in nis_cat in case of error.

14 years agoAdd versionadded tag to PyModule_GetFilenameObject() doc
Victor Stinner [Wed, 18 Aug 2010 10:57:33 +0000 (10:57 +0000)]
Add versionadded tag to PyModule_GetFilenameObject() doc

14 years agoImprove PEP 383 tests (in test_os)
Victor Stinner [Wed, 18 Aug 2010 10:56:19 +0000 (10:56 +0000)]
Improve PEP 383 tests (in test_os)

 * Use the current filesystem encoding instead of always using utf-8
 * Enable the test on Mac OS X
 * Use TESTFN_UNENCODABLE and TESTFN_UNICODE instead of arbitrary filenames
 * To decode a filename, use strict error handler instead surrogateescape for
   mbcs encoding (on Windows)
 * Use TESTFN_UNENCODABLE (if available) for the directory name

Skip the test if no non-ascii filename can be created.

14 years agoIssue #9425: Create PyModule_GetFilenameObject() function
Victor Stinner [Tue, 17 Aug 2010 23:37:11 +0000 (23:37 +0000)]
Issue #9425: Create PyModule_GetFilenameObject() function

... to get the filename as a unicode object, instead of a byte string. Function
needed to support unencodable filenames. Deprecate PyModule_GetFilename() in
favor on the new function.

14 years agoCorrect library name that Ask will work on.
Martin v. Löwis [Tue, 17 Aug 2010 23:16:51 +0000 (23:16 +0000)]
Correct library name that Ask will work on.

14 years agoAdd Ask Solem.
Martin v. Löwis [Tue, 17 Aug 2010 22:58:42 +0000 (22:58 +0000)]
Add Ask Solem.

14 years agoRemove unused functions _PyImport_FindModule and _PyImport_IsScript
Victor Stinner [Tue, 17 Aug 2010 22:54:21 +0000 (22:54 +0000)]
Remove unused functions _PyImport_FindModule and _PyImport_IsScript

14 years agolibpython.py: py-bt commands escape unencodable characters
Victor Stinner [Tue, 17 Aug 2010 22:49:25 +0000 (22:49 +0000)]
libpython.py: py-bt commands escape unencodable characters

Encode unicode strings to the terminal encoding with backslashreplace error (as
Python does for sys.stderr) before writing them to sys.stdout. It fixes
UnicodeEncodeError on writing non-ascii characters in an ascii terminal (C
locale: ASCII encoding).

14 years agoIssue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().
Victor Stinner [Tue, 17 Aug 2010 22:26:51 +0000 (22:26 +0000)]
Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().

14 years agoReplace :func: by :cfunc:
Victor Stinner [Tue, 17 Aug 2010 22:01:02 +0000 (22:01 +0000)]
Replace :func: by :cfunc:

To get links to the C functions

14 years agoFix example
Éric Araujo [Tue, 17 Aug 2010 21:24:05 +0000 (21:24 +0000)]
Fix example

14 years agoAdd versionadded tags
Antoine Pitrou [Tue, 17 Aug 2010 21:15:00 +0000 (21:15 +0000)]
Add versionadded tags

14 years agoModernize gzip examples
Antoine Pitrou [Tue, 17 Aug 2010 21:11:49 +0000 (21:11 +0000)]
Modernize gzip examples

14 years agoIssue #3488: Provide convenient shorthand functions `gzip.compress`
Antoine Pitrou [Tue, 17 Aug 2010 21:10:05 +0000 (21:10 +0000)]
Issue #3488: Provide convenient shorthand functions `gzip.compress`
and `gzip.decompress`.  Original patch by Anand B. Pillai.

14 years agoCleanup and correct a few ints to be Py_ssize_t.
Brian Curtin [Tue, 17 Aug 2010 20:49:09 +0000 (20:49 +0000)]
Cleanup and correct a few ints to be Py_ssize_t.

14 years agoProperly downcast from size_t/Py_ssize_t in a few places.
Brian Curtin [Tue, 17 Aug 2010 20:08:40 +0000 (20:08 +0000)]
Properly downcast from size_t/Py_ssize_t in a few places.

14 years agoClean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t".
Antoine Pitrou [Tue, 17 Aug 2010 19:33:30 +0000 (19:33 +0000)]
Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t".

14 years agoMinor rewording to docs for the lru_cache decorator
Raymond Hettinger [Tue, 17 Aug 2010 19:19:29 +0000 (19:19 +0000)]
Minor rewording to docs for the lru_cache decorator

14 years agoFix <deque iterator>.__length_hint__() under 64-bit Windows.
Antoine Pitrou [Tue, 17 Aug 2010 18:30:06 +0000 (18:30 +0000)]
Fix <deque iterator>.__length_hint__() under 64-bit Windows.

14 years agoIssue #9612: The set object is now 64-bit clean under Windows.
Antoine Pitrou [Tue, 17 Aug 2010 17:55:07 +0000 (17:55 +0000)]
Issue #9612: The set object is now 64-bit clean under Windows.

14 years agowrap
Benjamin Peterson [Tue, 17 Aug 2010 17:52:02 +0000 (17:52 +0000)]
wrap

14 years agofix issue #8807: adds a context parameter to POP3_SSL class.
Giampaolo Rodolà [Tue, 17 Aug 2010 16:09:53 +0000 (16:09 +0000)]
fix issue #8807: adds a context parameter to POP3_SSL class.

14 years agofix issue #8866: parameters passed to socket.getaddrinfo can now be specified as...
Giampaolo Rodolà [Tue, 17 Aug 2010 15:30:23 +0000 (15:30 +0000)]
fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments.

14 years agoConsistency check for versionadded/changed directives.
Georg Brandl [Tue, 17 Aug 2010 15:07:14 +0000 (15:07 +0000)]
Consistency check for versionadded/changed directives.

14 years agoMarkup nits.
Georg Brandl [Tue, 17 Aug 2010 14:11:59 +0000 (14:11 +0000)]
Markup nits.

14 years agoIssue #8202: Set sys.argv[0] to -m rather than -c while searching for the module...
Nick Coghlan [Tue, 17 Aug 2010 13:06:11 +0000 (13:06 +0000)]
Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory

14 years agoAnother attempt at pacifying the windows buildbots by ignoring all the variable infor...
Nick Coghlan [Tue, 17 Aug 2010 11:28:07 +0000 (11:28 +0000)]
Another attempt at pacifying the windows buildbots by ignoring all the variable information in the dis.code_info tests

14 years agoAddress XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler...
Nick Coghlan [Tue, 17 Aug 2010 10:18:16 +0000 (10:18 +0000)]
Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own

14 years agoIgnore the exact ID value for the nested function in the dis.code_info tests
Nick Coghlan [Tue, 17 Aug 2010 09:25:57 +0000 (09:25 +0000)]
Ignore the exact ID value for the nested function in the dis.code_info tests

14 years agoCorrect a couple of assert* methods. Patch by Dave Malcolm.
Ezio Melotti [Tue, 17 Aug 2010 08:35:41 +0000 (08:35 +0000)]
Correct a couple of assert* methods. Patch by Dave Malcolm.

14 years agoIssue 9147: Add dis.code_info()
Nick Coghlan [Tue, 17 Aug 2010 08:03:36 +0000 (08:03 +0000)]
Issue 9147: Add dis.code_info()

14 years agoDocument and test the resolution of issue 3445 (tolerate missing attributes in functo...
Nick Coghlan [Tue, 17 Aug 2010 06:17:18 +0000 (06:17 +0000)]
Document and test the resolution of issue 3445 (tolerate missing attributes in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper)

14 years agoRemove some lingering remnants of the short-lived functools.lfu_cache
Nick Coghlan [Tue, 17 Aug 2010 05:22:50 +0000 (05:22 +0000)]
Remove some lingering remnants of the short-lived functools.lfu_cache

14 years agoadded versionadded
Benjamin Peterson [Tue, 17 Aug 2010 03:37:20 +0000 (03:37 +0000)]
added versionadded

14 years agoadd tests for mknod() and mkfifo() #9569
Benjamin Peterson [Tue, 17 Aug 2010 01:27:09 +0000 (01:27 +0000)]
add tests for mknod() and mkfifo() #9569

14 years agoremove test for oldstyle classes
Benjamin Peterson [Tue, 17 Aug 2010 01:08:46 +0000 (01:08 +0000)]
remove test for oldstyle classes

14 years agouse assertTrue/assertFalse
Benjamin Peterson [Tue, 17 Aug 2010 01:07:53 +0000 (01:07 +0000)]
use assertTrue/assertFalse

14 years agoadd support for abstract class and static methods #5867
Benjamin Peterson [Tue, 17 Aug 2010 00:52:52 +0000 (00:52 +0000)]
add support for abstract class and static methods #5867

14 years agotest_zipimport: fix test name
Victor Stinner [Tue, 17 Aug 2010 00:44:11 +0000 (00:44 +0000)]
test_zipimport: fix test name

14 years agoIssue #9425: save/restore exception on filename encoding
Victor Stinner [Tue, 17 Aug 2010 00:39:57 +0000 (00:39 +0000)]
Issue #9425: save/restore exception on filename encoding

_PyUnicode_AsString() raises an exception on unencodable filename.

14 years agoIssue #9425: zipimporter_repr() uses unicode
Victor Stinner [Tue, 17 Aug 2010 00:04:48 +0000 (00:04 +0000)]
Issue #9425: zipimporter_repr() uses unicode

14 years agoIssue #9425: get_data() uses an unicode path
Victor Stinner [Mon, 16 Aug 2010 23:48:11 +0000 (23:48 +0000)]
Issue #9425: get_data() uses an unicode path

14 years agor82659 reintroduced some tab characters. Untabify again.
Amaury Forgeot d'Arc [Mon, 16 Aug 2010 22:16:51 +0000 (22:16 +0000)]
r82659 reintroduced some tab characters. Untabify again.

14 years agoFix compilation warning on Windows
Amaury Forgeot d'Arc [Mon, 16 Aug 2010 22:11:29 +0000 (22:11 +0000)]
Fix compilation warning on Windows

14 years agoIssue #9425: Create Py_UNICODE_strncmp() function
Victor Stinner [Mon, 16 Aug 2010 22:03:11 +0000 (22:03 +0000)]
Issue #9425: Create Py_UNICODE_strncmp() function

The code is based on strncmp() of the libiberty library,
function in the public domain.

14 years agoMark myself as assignable for winreg, and put myself down for Windows.
Brian Curtin [Mon, 16 Aug 2010 20:50:03 +0000 (20:50 +0000)]
Mark myself as assignable for winreg, and put myself down for Windows.

14 years agoIssue #8983: Corrected docstrings.
Alexander Belopolsky [Mon, 16 Aug 2010 20:17:07 +0000 (20:17 +0000)]
Issue #8983: Corrected docstrings.

14 years agoAdd Tim Golden as interested in Windows
Tim Golden [Mon, 16 Aug 2010 20:10:39 +0000 (20:10 +0000)]
Add Tim Golden as interested in Windows

14 years agoI get it wrong in r84097: s/relative/absolute/
Florent Xicluna [Mon, 16 Aug 2010 19:03:05 +0000 (19:03 +0000)]
I get it wrong in r84097: s/relative/absolute/

14 years agoIssue #665761: functools.reduce() will no longer mask exceptions other
Alexander Belopolsky [Mon, 16 Aug 2010 18:55:46 +0000 (18:55 +0000)]
Issue #665761: functools.reduce() will no longer mask exceptions other
than TypeError raised by the iterator argument.  Also added a test to
check that zip() already behaves similarly.

14 years agoUse test.support and unittest features. Fix duplicated test (bad merge in r79033...
Florent Xicluna [Mon, 16 Aug 2010 18:41:19 +0000 (18:41 +0000)]
Use test.support and unittest features.  Fix duplicated test (bad merge in r79033).  Fix comment for issue #7902.

14 years agoAdd versionadded tag to PySys_FormatStd*() functions doc
Victor Stinner [Mon, 16 Aug 2010 18:39:49 +0000 (18:39 +0000)]
Add versionadded tag to PySys_FormatStd*() functions doc

14 years agoIssue #9425: read_directory() is fully unicode compliant
Victor Stinner [Mon, 16 Aug 2010 17:54:28 +0000 (17:54 +0000)]
Issue #9425: read_directory() is fully unicode compliant

zipimport is now able to load a module with an unencodable filename.

14 years agoIssue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()
Victor Stinner [Mon, 16 Aug 2010 17:36:42 +0000 (17:36 +0000)]
Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()

Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and
sys.stderr.

14 years agoRemove debug hack
Antoine Pitrou [Mon, 16 Aug 2010 14:33:42 +0000 (14:33 +0000)]
Remove debug hack

14 years agofix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the...
Giampaolo Rodolà [Mon, 16 Aug 2010 05:08:11 +0000 (05:08 +0000)]
fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto'

14 years agoclose down sockets held by asyncore at end of test; closes issue9619
Richard Jones [Mon, 16 Aug 2010 01:48:14 +0000 (01:48 +0000)]
close down sockets held by asyncore at end of test; closes issue9619

14 years agoSave and restore the global asyncore.socket_map, and warn if a test modified it
Antoine Pitrou [Mon, 16 Aug 2010 00:28:05 +0000 (00:28 +0000)]
Save and restore the global asyncore.socket_map, and warn if a test modified it

14 years agoAdd debug output to the asyncore test
Antoine Pitrou [Sun, 15 Aug 2010 23:28:10 +0000 (23:28 +0000)]
Add debug output to the asyncore test

14 years agoPut test_ciphers in NetworkedTests
Antoine Pitrou [Sun, 15 Aug 2010 23:02:22 +0000 (23:02 +0000)]
Put test_ciphers in NetworkedTests

14 years agoFollowing Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x
Antoine Pitrou [Sun, 15 Aug 2010 22:16:23 +0000 (22:16 +0000)]
Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x

14 years agoReplace readfp() with read_file() in configparser documentation.
Florent Xicluna [Sun, 15 Aug 2010 20:21:26 +0000 (20:21 +0000)]
Replace readfp() with read_file() in configparser documentation.

14 years agoReplace the deprecated ConfigParser.readfp() method, and fix the incomplete merge...
Florent Xicluna [Sun, 15 Aug 2010 20:16:27 +0000 (20:16 +0000)]
Replace the deprecated ConfigParser.readfp() method, and fix the incomplete merge in r82293.

14 years agoFix TESTFN_UNENCODABLE of test.support on Mac OS X
Victor Stinner [Sun, 15 Aug 2010 19:28:21 +0000 (19:28 +0000)]
Fix TESTFN_UNENCODABLE of test.support on Mac OS X

14 years agoFix more 64-bit warnings.
Antoine Pitrou [Sun, 15 Aug 2010 18:51:10 +0000 (18:51 +0000)]
Fix more 64-bit warnings.

14 years agoFix other warnings under 64-bit Windows.
Antoine Pitrou [Sun, 15 Aug 2010 18:07:50 +0000 (18:07 +0000)]
Fix other warnings under 64-bit Windows.

14 years agoFix (harmless) warning with MSVC.
Antoine Pitrou [Sun, 15 Aug 2010 17:41:31 +0000 (17:41 +0000)]
Fix (harmless) warning with MSVC.

14 years agoFix indentation and remove dead code.
Antoine Pitrou [Sun, 15 Aug 2010 17:38:46 +0000 (17:38 +0000)]
Fix indentation and remove dead code.

14 years agoFix some compilation warnings under 64-bit Windows (issue #9566).
Antoine Pitrou [Sun, 15 Aug 2010 17:12:55 +0000 (17:12 +0000)]
Fix some compilation warnings under 64-bit Windows (issue #9566).
Some of these are genuine bugs with objects bigger than 2GB, but
my system doesn't allow me to write tests for it.

14 years agoAdd pgen.stamp to svn:ignore and friends
Antoine Pitrou [Sun, 15 Aug 2010 16:26:49 +0000 (16:26 +0000)]
Add pgen.stamp to svn:ignore and friends

14 years agoDon't run pgen twice when using make -j.
Martin v. Löwis [Sun, 15 Aug 2010 15:47:25 +0000 (15:47 +0000)]
Don't run pgen twice when using make -j.

14 years agoOops, fix a typo in NEWS: surrogateespace => surrogateescape
Victor Stinner [Sun, 15 Aug 2010 09:56:07 +0000 (09:56 +0000)]
Oops, fix a typo in NEWS: surrogateespace => surrogateescape

14 years agoClarify whatsnew entry for short float repr: roundtripping is not a new feature...
Mark Dickinson [Sun, 15 Aug 2010 09:43:29 +0000 (09:43 +0000)]
Clarify whatsnew entry for short float repr:  roundtripping is not a new feature in 2.7.

14 years agoIssue #9605: posix.getlogin() decodes the username with file filesystem
Victor Stinner [Sun, 15 Aug 2010 09:33:08 +0000 (09:33 +0000)]
Issue #9605: posix.getlogin() decodes the username with file filesystem
encoding and surrogateescape error handler. Patch written by David Watson.

Reindent also posix_getlogin(), and fix a typo in the NEWS file.

14 years agoIssue #9604: posix.initgroups() encodes the username using the fileystem
Victor Stinner [Sun, 15 Aug 2010 09:22:44 +0000 (09:22 +0000)]
Issue #9604: posix.initgroups() encodes the username using the fileystem
encoding and surrogateescape error handler. Patch written by David Watson.

14 years agoIssue #9603: posix.ttyname() and posix.ctermid() decode the terminal name
Victor Stinner [Sun, 15 Aug 2010 09:12:51 +0000 (09:12 +0000)]
Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name
using the filesystem encoding and surrogateescape error handler. Patch
written by David Watson.

14 years agoFix __all__.
Raymond Hettinger [Sun, 15 Aug 2010 07:41:40 +0000 (07:41 +0000)]
Fix __all__.

14 years agoRemoving the comment lines for the modules which were made to build statically.
Senthil Kumaran [Sun, 15 Aug 2010 03:59:07 +0000 (03:59 +0000)]
Removing the comment lines for the modules which were made to build statically.

14 years agoRemove unused imports
Raymond Hettinger [Sun, 15 Aug 2010 03:35:24 +0000 (03:35 +0000)]
Remove unused imports