Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45085: Remove the binhex module (GH-28117) | Victor Stinner | 2021-09-02 | 1 | -72/+0 |
| | | | | | | | | | | The binhex module, deprecated in Python 3.9, is now removed. The following binascii functions, deprecated in Python 3.9, are now also removed: * a2b_hqx(), b2a_hqx(); * rlecode_hqx(), rledecode_hqx(). The binascii.crc_hqx() function remains available. | ||||
* | bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) | Ronald Oussoren | 2020-11-01 | 1 | -0/+12 |
| | | | [bpo-29566]() notes that binhex.binhex uses inconsistent line endings (both Unix and MacOS9 line endings are used). This PR changes this to use the MacOS9 line endings everywhere. | ||||
* | bpo-40275: Use new test.support helper submodules in tests (GH-21314) | Hai Shi | 2020-07-06 | 1 | -8/+12 |
| | |||||
* | bpo-41069: Make TESTFN and the CWD for tests containing non-ascii ↵ | Serhiy Storchaka | 2020-06-25 | 1 | -3/+4 |
| | | | | characters. (GH-21035) | ||||
* | bpo-40927: Fix test_binhex when run twice (GH-20764) | Victor Stinner | 2020-06-10 | 1 | -1/+1 |
| | | | | test_binhex now uses import_fresh_module() to ensure that it raises DeprecationWarning each time. | ||||
* | bpo-39353: Deprecate the binhex module (GH-18025) | Victor Stinner | 2020-01-22 | 1 | -1/+3 |
| | | | | | | | | Deprecate binhex4 and hexbin4 standards. Deprecate the binhex module and the following binascii functions: * b2a_hqx(), a2b_hqx() * rlecode_hqx(), rledecode_hqx() * crc_hqx() | ||||
* | bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929) | Serhiy Storchaka | 2019-03-05 | 1 | -6/+4 |
| | |||||
* | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -1/+0 |
| | | | | Patch by Jon Dufresne. | ||||
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -1/+0 |
| | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. | ||||
* | Close #11577: Improve binhex test coverage and fix ResourceWarning | Nick Coghlan | 2011-03-17 | 1 | -0/+11 |
| | |||||
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -6/+6 |
| | |||||
* | Make test_binhex pass. (Do we really want to support it still?) | Guido van Rossum | 2007-05-22 | 1 | -8/+5 |
| | |||||
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 1 | -3/+2 |
| | | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones. | ||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 1 | -1/+6 |
| | | | | | allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves. | ||||
* | Convert binhex regression test to PyUnit. We could use a better test | Fred Drake | 2001-05-22 | 1 | -40/+38 |
| | | | | for this. | ||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Stop creating an unbounded number of "Jack is my hero" files under Windows. | Tim Peters | 2001-01-17 | 1 | -0/+1 |
| | | | | | Not that Jack doesn't deserve them, but saying it so often cheapens the sentiment. | ||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -2/+2 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -1/+1 |
| | |||||
* | Raise 'TestSkipped' (from the test_support) module rather than 'ImportError' | Thomas Wouters | 2000-08-04 | 1 | -2/+2 |
| | | | | | to signify a test that should be marked as 'skipped' rather than 'failed'. Also 'document' it, in README. | ||||
* | This test really only tests the binhex module. | Guido van Rossum | 1999-10-19 | 1 | -2/+2 |
| | | | | Renamed it and adapted a comment and an error message. | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -12/+12 |
| | |||||
* | Minor output message change | Roger E. Masse | 1997-01-16 | 1 | -1/+7 |
| | |||||
* | test script for the binascii C module. | Roger E. Masse | 1997-01-16 | 1 | -0/+40 |