Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL. | Antoine Pitrou | 2012-01-27 | 1 | -1/+2 |
|\ | |||||
| * | Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL. | Antoine Pitrou | 2012-01-27 | 1 | -1/+2 |
* | | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ... | Antoine Pitrou | 2012-01-27 | 2 | -2/+7 |
|\ \ | |/ | |||||
| * | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ... | Antoine Pitrou | 2012-01-27 | 2 | -2/+7 |
| |\ | |||||
| | * | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ... | Antoine Pitrou | 2012-01-27 | 2 | -1/+5 |
| * | | merge | Brett Cannon | 2012-01-26 | 2 | -1/+3 |
| |\ \ | |||||
* | \ \ | Merge | Brett Cannon | 2012-01-27 | 3 | -23/+45 |
|\ \ \ \ | |||||
| * | | | | Issue #13847: Make test_localtime_failure() more robust | Victor Stinner | 2012-01-27 | 1 | -10/+15 |
| * | | | | Issue #13847: Fix test_mktime(), time.localtime() now raises OSError | Victor Stinner | 2012-01-26 | 1 | -1/+1 |
| * | | | | Issue #13847: time.clock() now raises a RuntimeError if the processor time used | Victor Stinner | 2012-01-26 | 2 | -12/+29 |
* | | | | | Relocate importlib._case_ok to importlib._bootstrap. | Brett Cannon | 2012-01-27 | 2 | -19/+27 |
|/ / / / | |||||
* | | | | Merge | Brett Cannon | 2012-01-26 | 7 | -64/+86 |
|\ \ \ \ | |||||
| * | | | | Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead | Victor Stinner | 2012-01-26 | 3 | -52/+81 |
| * | | | | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. | Meador Inge | 2012-01-26 | 3 | -5/+4 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. | Meador Inge | 2012-01-26 | 3 | -5/+4 |
| * | | | | Merge | Brett Cannon | 2012-01-26 | 4 | -42/+52 |
| |\ \ \ \ | |||||
| * \ \ \ \ | Merge | Raymond Hettinger | 2012-01-26 | 1 | -1/+1 |
| |\ \ \ \ \ | | | |/ / / | | |/| | | | |||||
| | * | | | | Issue 13870: Fix out of date comment. | Raymond Hettinger | 2012-01-26 | 1 | -1/+1 |
| * | | | | | Remove now useless arbitrary limit of module name length | Victor Stinner | 2012-01-25 | 1 | -6/+0 |
* | | | | | | Issue #13883: PYTHONCASEOK also works with OS X. | Brett Cannon | 2012-01-26 | 2 | -1/+3 |
|\ \ \ \ \ \ | |_|_|/ / / |/| | | / / | | |_|/ / | |/| | | | |||||
| * | | | | Issue #13883: Document all platforms PYTHONCASEOK works on. | Brett Cannon | 2012-01-26 | 2 | -1/+3 |
| | |/ / | |/| | | |||||
* | | | | Move some code from importlib.__init__ to importlib._bootstrap that | Brett Cannon | 2012-01-25 | 4 | -42/+52 |
| |/ / |/| | | |||||
* | | | merge with 3.2 | Georg Brandl | 2012-01-25 | 1 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | #13852: some small doc fixes. | Georg Brandl | 2012-01-25 | 1 | -3/+3 |
* | | | merge heads | Benjamin Peterson | 2012-01-25 | 2 | -6/+9 |
|\ \ \ | |||||
| * | | | Issue #13862: Relax zlib version test to avoid spurious failures. | Nadeem Vawda | 2012-01-25 | 2 | -6/+9 |
* | | | | merge 3.2 | Benjamin Peterson | 2012-01-25 | 1 | -6/+6 |
|\ \ \ \ | |/ / / |/| / / | |/ / | |||||
| * | | kill extra word | Benjamin Peterson | 2012-01-25 | 1 | -3/+3 |
| * | | say bitwise (because I have no idea what a bit-string is) | Benjamin Peterson | 2012-01-25 | 1 | -6/+6 |
* | | | Closes #13859: Merged fix from 3.2 - thanks to Matt Joiner for spotting this ... | Vinay Sajip | 2012-01-25 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Closes #13859: Replaced reference to StandardError with reference to Exceptio... | Vinay Sajip | 2012-01-25 | 1 | -1/+1 |
* | | | Port import fixes from 2.7. | Antoine Pitrou | 2012-01-25 | 3 | -12/+12 |
|\ \ \ | |/ / | |||||
| * | | Port import fixes from 2.7. | Antoine Pitrou | 2012-01-25 | 3 | -12/+12 |
* | | | Issue #12804: Fix test failures on systems without internet access. | Nadeem Vawda | 2012-01-25 | 3 | -6/+16 |
* | | | Remove redundant resource check in test_socket. | Nadeem Vawda | 2012-01-25 | 1 | -1/+0 |
* | | | Port remaining test fixes, and fix test_importlib too. | Antoine Pitrou | 2012-01-25 | 2 | -9/+30 |
|\ \ \ | |/ / | |||||
| * | | Port remaining test fixes, and fix test_importlib too. | Antoine Pitrou | 2012-01-25 | 2 | -1/+14 |
| * | | Make test work under 32-bit systems, and when invoked through Lib/test/regrte... | Antoine Pitrou | 2012-01-25 | 1 | -8/+16 |
* | | | Issue #11235: Fix OverflowError when trying to import a source file whose mod... | Antoine Pitrou | 2012-01-24 | 4 | -7/+36 |
|\ \ \ | |/ / | |||||
| * | | Issue #11235: Fix OverflowError when trying to import a source file whose mod... | Antoine Pitrou | 2012-01-24 | 4 | -7/+36 |
* | | | merge 3.2 | Benjamin Peterson | 2012-01-24 | 0 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | merge heads | Benjamin Peterson | 2012-01-24 | 6 | -21/+16 |
| |\ \ | |||||
* | \ \ | merge heads | Benjamin Peterson | 2012-01-24 | 9 | -40/+36 |
|\ \ \ \ | |||||
| * \ \ \ | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 4 | -19/+14 |
| |\ \ \ \ | | | |/ / | | |/| | | |||||
| | * | | | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 4 | -19/+14 |
| * | | | | Sort functions in the doc of the time module | Victor Stinner | 2012-01-24 | 1 | -13/+14 |
| * | | | | Issue #10278: wallclock() cannot go backward, but two consecutive calls | Victor Stinner | 2012-01-23 | 1 | -1/+1 |
| * | | | | Silence last compilation warning. | Amaury Forgeot d'Arc | 2012-01-23 | 1 | -1/+1 |
| * | | | | Fix compilation warnings (seen on win32 buildbot) | Amaury Forgeot d'Arc | 2012-01-23 | 1 | -4/+4 |
| * | | | | merge from 3.2 | Georg Brandl | 2012-01-23 | 2 | -2/+2 |
| |\ \ \ \ | | |/ / / |