summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use a different VER command output parser to address the localizationMarc-André Lemburg2009-07-131-2/+17
| | | | | | issues mentioned in #3410. Prepare for Windows 7 (still commented out).
* Use a new global DEV_NULL instead of hard-coding /dev/null into the systemMarc-André Lemburg2009-07-131-4/+20
| | | | | | command helper functions. See #6479 for some motivation.
* NEWS entry for r74000.Amaury Forgeot d'Arc2009-07-131-1/+3
|
* #1616979: Add the cp720 (Arabic DOS) encoding.Amaury Forgeot d'Arc2009-07-133-0/+379
| | | | | Since there is no official mapping file from unicode.org, the codec file is generated on Windows with the new genwincodec.py script.
* Set svn:eol-style=CRLF on all Visual Studio solution files.Amaury Forgeot d'Arc2009-07-136-1467/+1467
| | | | This should allow direct compilation from a downloaded source tar ball.
* Issue #6314: logging: Extra checks on the "level" argument in more places.Vinay Sajip2009-07-132-12/+21
|
* fix umlautBenjamin Peterson2009-07-131-1/+1
|
* change encoding to utf-8Benjamin Peterson2009-07-121-2/+2
|
* fix another nameBenjamin Peterson2009-07-121-1/+1
|
* change encoding to utf-8Benjamin Peterson2009-07-121-25/+25
|
* fix Tarek's nameBenjamin Peterson2009-07-121-1/+1
|
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-07-121-4/+41
| | | | Add more tests for the xlmrpc.ServerProxy
* add JoeBenjamin Peterson2009-07-121-1/+2
|
* add versionaddedBenjamin Peterson2009-07-121-0/+2
|
* Fixed distutils test.Hirokazu Yamamoto2009-07-121-1/+1
|
* ignore things in Lib/test/data/Benjamin Peterson2009-07-112-0/+2
|
* put downloaded test support files in Lib/test/data instead of the cwdBenjamin Peterson2009-07-114-39/+5
|
* reverted changes for #6459 (doesn't apply on 2.x)Tarek Ziadé2009-07-113-7/+4
|
* #2622 Import errors in email.message, from a py2app standalone application.Amaury Forgeot d'Arc2009-07-119-18/+21
| | | | Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
* array.array is actually a class.Georg Brandl2009-07-111-4/+3
|
* fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit'Tarek Ziadé2009-07-113-4/+7
|
* #6456: clarify the meaning of constants used as arguments to nl_langinfo().Georg Brandl2009-07-111-133/+120
|
* cleaned up distutils.build_ext moduleTarek Ziadé2009-07-111-26/+16
|
* #6430: add note about size of "u" type.Georg Brandl2009-07-111-1/+6
|
* #6448: clarify docs for find_module().Georg Brandl2009-07-111-10/+11
|
* #6446: fix import_spam() function to use correct error and reference handling.Georg Brandl2009-07-111-9/+16
|
* Fix style.Georg Brandl2009-07-111-4/+4
|
* Add basic tests for the return value of os.popen().close().Amaury Forgeot d'Arc2009-07-111-0/+7
| | | | According to #6358, python 3.0 has a different implementation that behaves differently.
* http://bugs.python.org/issue6460Kristján Valur Jónsson2009-07-111-2/+8
| | | | Need to be careful with thread switching when testing the xmlrpc server. The server thread may not have updated stats when the client thread tests them.
* more cleanups and if zlib -> skipUnless(zlib)Ezio Melotti2009-07-101-90/+94
|
* #6447: typo in subprocess docstringAmaury Forgeot d'Arc2009-07-101-2/+2
|
* cleaned up distutils.command.buildTarek Ziadé2009-07-101-15/+5
|
* Added test coverage for distutils.command.buildTarek Ziadé2009-07-101-0/+54
|
* Fixed #6455 (the test shall use pyd files under win32, rather than so files)Tarek Ziadé2009-07-102-4/+7
|
* #6416: Fix compilation of the select module on Windows, as well as ↵Amaury Forgeot d'Arc2009-07-094-7/+10
| | | | | | | | test_subprocess: PIPE_BUF is not defined on Windows, and probably has no meaning there. Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
* Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnamesR. David Murray2009-07-091-2/+1
| | | | | | | cleanup. If this fix works, it means that Solaris is unique among our platforms in what happens when shutil.rmtree is called on the current working directory (ie: it doesn't work on Solaris, but it does everywhere else).
* Temporarily ignore rmtree errors in test_getcwd_long_pathnames to seeR. David Murray2009-07-091-1/+2
| | | | if the test gives useful failure info on Solaris buildbot.
* Curdir needs to be in the path for the test to work on all buildbots.R. David Murray2009-07-091-0/+2
| | | | | (I copied this from another import test, but currently this will fail if TESTFN ends up in /tmp...see issue 2609).
* Specify umask in execute bit test to get consistent resultsR. David Murray2009-07-091-0/+2
| | | | and make sure we test resetting all three execute bits.
* PendingDeprecationWarning -> DeprecationWarning in build_extTarek Ziadé2009-07-091-2/+2
|
* Make test work with -O.R. David Murray2009-07-091-2/+8
|
* Conditionalize test cleanup code to eliminate traceback, which willR. David Murray2009-07-091-1/+1
| | | | hopefully reveal the real problem.
* Sets the compiler attribute to keep the old behavior for third-party packages.Tarek Ziadé2009-07-082-4/+29
|
* Issue #1523: Remove deprecated overflow masking in struct module, andMark Dickinson2009-07-073-238/+37
| | | | make sure that out-of-range values consistently raise struct.error.
* Expand test coverage for struct.pack with native integer packing;Mark Dickinson2009-07-071-170/+107
| | | | reorganize the test_struct module to remove duplicated code and tests.
* Add skipping to struct test that only applies when overflow masking is in effectMark Dickinson2009-07-071-0/+2
|
* Typo in error messageMark Dickinson2009-07-071-1/+1
|
* Update issue 6070 patch to match the patch that was actually testedR. David Murray2009-07-071-1/+3
| | | | on Windows.
* http://bugs.python.org/issue6382Kristján Valur Jónsson2009-07-071-9/+23
| | | | added the shutdown_request() which can perform shutdown before calling close. This is needed for the ForkingMixIn because different close semantics are required for child and parent process. shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request(). Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
* #6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD.Amaury Forgeot d'Arc2009-07-071-1/+1
|