Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update documentation to mention bytes instead byte string and correct one | Gregory P. Smith | 2011-05-23 | 1 | -2/+2 |
| | | | | mentioned string to the accurate description of what type is required. | ||||
* | Issue #12151: test_logging writes debug messages to stderr, not stdout | Victor Stinner | 2011-05-22 | 1 | -2/+2 |
| | | | | stdout are lost in buildbots | ||||
* | skip more tests in packaging if threading is not supported | Tarek Ziade | 2011-05-22 | 3 | -3/+20 |
| | |||||
* | not using a server name anymore as the 127.0.0.1 <> localhost symmetry is ↵ | Tarek Ziade | 2011-05-22 | 1 | -3/+1 |
| | | | | not true under Windows 7 | ||||
* | Issue 12132 - skip the test_buil_ext test if the xx module is not found | Tarek Ziade | 2011-05-22 | 2 | -2/+10 |
| | |||||
* | Issue 10126 - backported distutils fix for the enable-share mode into packaging | Tarek Ziade | 2011-05-22 | 3 | -7/+30 |
| | |||||
* | Issue #12105: Add O_CLOEXEC to the os module. | Charles-François Natali | 2011-05-22 | 1 | -0/+7 |
| | |||||
* | Issue #12138: fix use of transient_internet() in test_urllibnet | Antoine Pitrou | 2011-05-22 | 1 | -77/+62 |
|\ | |||||
| * | Issue #12138: fix use of transient_internet() in test_urllibnet | Antoine Pitrou | 2011-05-22 | 1 | -77/+62 |
| | | |||||
| * | Merge release branch after 3.2.1rc1. | Georg Brandl | 2011-05-21 | 3 | -5/+5 |
| |\ | |||||
| | * | Bump to 3.2.1rc1.v3.2.1rc1 | Georg Brandl | 2011-05-15 | 2 | -2/+2 |
| | | | |||||
| | * | Update pydoc topics and handle suspicious markup. | Georg Brandl | 2011-05-15 | 1 | -3/+3 |
| | | | |||||
* | | | regrtest: enable faulthandler in main() instead of if __name__ == '__main__': | Victor Stinner | 2011-05-22 | 1 | -3/+4 |
| | | | | | | | | | | | | So it's also enabled when using "./python -m test". | ||||
* | | | Issue #12079: Decimal(0).fma(Decimal('inf'), 'not a number') should give a ↵ | Mark Dickinson | 2011-05-22 | 2 | -1/+12 |
| | | | | | | | | | | | | TypeError, not a Decimal.InvalidOperation | ||||
* | | | added the Content-Length header. that fixes the weird ↵ | Tarek Ziade | 2011-05-21 | 1 | -0/+1 |
| | | | | | | | | | | | | packaging.pypi.errors.HashDoesNotMatch errors | ||||
* | | | deactivating one test under win32 for now | Tarek Ziade | 2011-05-21 | 1 | -0/+1 |
| | | | |||||
* | | | make sure the crawler can browse file-based indexes under win32 | Tarek Ziade | 2011-05-21 | 2 | -7/+25 |
| | | | |||||
* | | | fixed the export symbols for the win32 linker | Tarek Ziade | 2011-05-21 | 2 | -2/+2 |
| | | | |||||
* | | | skip the pypi upload doc test via https, if ssl is not available | Tarek Ziade | 2011-05-21 | 1 | -0/+5 |
| | | | |||||
* | | | use the same line terminator everywhere | Tarek Ziade | 2011-05-21 | 3 | -6/+11 |
| | | | |||||
* | | | Issue #12136: Added change to handle non-availability of the ssl module. | Vinay Sajip | 2011-05-21 | 1 | -9/+14 |
| | | | |||||
* | | | fixed the move api in packaging.install, and closing the handle left by ↵ | Tarek Ziade | 2011-05-21 | 2 | -10/+12 |
| | | | | | | | | | | | | mkstemp() in its test module | ||||
* | | | we want to generate /-separated paths setup.cfg files even under win32 | Tarek Ziade | 2011-05-21 | 1 | -7/+13 |
| | | | |||||
* | | | Added SSL test for HTTPHandler. | Vinay Sajip | 2011-05-21 | 1 | -33/+72 |
| | | | |||||
* | | | fixed the way the cfg file markers values are split under win32 | Tarek Ziade | 2011-05-21 | 2 | -2/+3 |
| | | | |||||
* | | | fixed the separator issues in packaging/resources+config | Tarek Ziade | 2011-05-21 | 3 | -3/+8 |
| | | | |||||
* | | | fixed a few mocking/cleanup issues in packaging test_util for win32 | Tarek Ziade | 2011-05-21 | 2 | -15/+20 |
| | | | |||||
* | | | Close #12114: fix a potential deadlock in packaging.util._find_exe_version() | Victor Stinner | 2011-05-21 | 2 | -1/+4 |
| | | | | | | | | | | | | Avoid also zombi processes: Popen.communicate() calls its wait() method. | ||||
* | | | Added SSL capability to TestHTTPServer. | Vinay Sajip | 2011-05-20 | 1 | -1/+14 |
| | | | |||||
* | | | Fix another ResourceWarning in test_packaging. | Ezio Melotti | 2011-05-20 | 2 | -1/+3 |
| | | | |||||
* | | | Fix more ResourceWarnings in test_packaging moving the join() and ↵ | Ezio Melotti | 2011-05-20 | 1 | -6/+3 |
| | | | | | | | | | | | | server_close() in the stop method. | ||||
* | | | Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex() | Charles-François Natali | 2011-05-20 | 1 | -2/+18 |
| | | | | | | | | | | | | accept and return str instead of bytes arrays. Add some more tests. | ||||
* | | | Fix several ResourceWarnings in test_packaging. | Ezio Melotti | 2011-05-20 | 1 | -1/+6 |
| | | | |||||
* | | | (Merge 3.2) test_pydoc: skip PydocServerTest if thread support is disabled | Victor Stinner | 2011-05-20 | 1 | -0/+6 |
|\ \ \ | |/ / | |||||
| * | | test_pydoc: skip PydocServerTest if thread support is disabled | Victor Stinner | 2011-05-20 | 1 | -0/+6 |
| | | | |||||
* | | | packaging.tests.test_command_install_data: restore correctly sysconfig._SCHEMES | Victor Stinner | 2011-05-19 | 1 | -4/+11 |
| | | | |||||
* | | | fix packaging tests on Windows: use os.path.join() in glob patterns | Victor Stinner | 2011-05-19 | 2 | -14/+16 |
| | | | |||||
* | | | (Merge 3.2) Issue #12124: zipimport doesn't keep a reference to | Victor Stinner | 2011-05-19 | 1 | -17/+0 |
|\ \ \ | |/ / | | | | | | | zlib.decompress() anymore to be able to unload the module. | ||||
| * | | (Merge 3.1) Issue #12124: zipimport doesn't keep a reference to | Victor Stinner | 2011-05-19 | 1 | -17/+0 |
| |\ \ | | | | | | | | | | | | | zlib.decompress() anymore to be able to unload the module. | ||||
| | * | | Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore | Victor Stinner | 2011-05-19 | 1 | -17/+0 |
| | | | | | | | | | | | | | | | | to be able to unload the module. | ||||
| | * | | Ooops, add the missing file of the backport of commit 33543b4e0e5d from Python | Victor Stinner | 2011-05-18 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | | | | | 3.2 (#10801: In zipfile, support different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky.) | ||||
| | * | | Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support | Victor Stinner | 2011-05-18 | 2 | -4/+33 |
| | | | | | | | | | | | | | | | | | | | | different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky. | ||||
* | | | | packaging: fix the constructor of FakePopen | Victor Stinner | 2011-05-19 | 1 | -2/+8 |
| | | | | | | | | | | | | | | | | packaging.util requires the env keyword. | ||||
* | | | | fix packaging.compiler.msvc9compiler: os.environ['path'] value is also a str | Victor Stinner | 2011-05-19 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | Don't encode the path list | ||||
* | | | | fix packaging.compiler.msvc9compiler: os.environ values are str, not bytes | Victor Stinner | 2011-05-19 | 1 | -2/+2 |
| | | | | |||||
* | | | | Issue #12112: fix the encoding of setup.py in the packaging module | Victor Stinner | 2011-05-19 | 2 | -4/+7 |
| | | | | | | | | | | | | | | | | | | | | * read: use tokenize.detect_encoding() * write: use 'utf-8' | ||||
* | | | | Refactor a few tests to use the new requires_zlib decorator. | Ezio Melotti | 2011-05-19 | 5 | -79/+49 |
| | | | | |||||
* | | | | Skip tests that require zlib in the packaging tests. Also add a ↵ | Ezio Melotti | 2011-05-19 | 7 | -14/+41 |
| | | | | | | | | | | | | | | | | requires_zlib decorator to test.support. | ||||
* | | | | Issue #12120, Issue #12119: tests were missing a sys.dont_write_bytecode check | Tarek Ziade | 2011-05-19 | 2 | -2/+4 |
| | | | | |||||
* | | | | removed unused method in packaging.create | Tarek Ziade | 2011-05-19 | 1 | -13/+0 |
| | | | |