summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10811: Use TestCase.assertRaises() in the new testVictor Stinner2011-05-091-5/+4
|
* Issue #11888: Use system log2() when availableVictor Stinner2011-05-094-3/+10
| | | | | I expect the system libc to use more accurate functions than Python. The GNU libc uses for example FYL2X and FYL2XP1 hardware instructions on Intel FPU.
* #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵Gerhard Haering2011-05-093-10/+43
| | | | ProgrammingError now.
* Grammatical fix for a comment for log2, to avoid referring to an *algorithm* ↵Mark Dickinson2011-05-091-1/+3
| | | | as monotonic.
* Fix nonunique test ids in math_testcases.txt.Mark Dickinson2011-05-091-4/+4
|
* Fix cut-and-paste typo in comment: log10 -> log2.Mark Dickinson2011-05-091-1/+1
|
* merge 11164Martin v. Löwis2011-05-099-105/+10
|\
| * merge 11164Martin v. Löwis2011-05-099-105/+10
| |\
| | * Stop trying to use _xmlplus in the xml module. Closes #11164.Martin v. Löwis2011-05-099-105/+10
| | | | | | | | | | | | Patch by Arfrever Frehtes Taifersar Arahesis.
* | | mergedMartin v. Löwis2011-05-091-1/+1
|\ \ \ | |/ /
| * | The option is actually --no-as-needed.Martin v. Löwis2011-05-091-1/+1
| | |
* | | merge 11347.Martin v. Löwis2011-05-094-534/+623
|\ \ \ | |/ /
| * | Use --as-needed when linking libpython3.so. Closes #11347.Martin v. Löwis2011-05-094-48/+94
| | | | | | | | | | | | Patch by Arfrever Frehtes Taifersar Arahesis.
* | | #11910: merge with 3.2.Ezio Melotti2011-05-092-16/+38
|\ \ \ | |/ /
| * | #11910: merge with 3.1.Ezio Melotti2011-05-092-15/+31
| |\ \ | | |/
| | * #11910: Fix test_heapq to skip the C tests when _heapq is missing.Ezio Melotti2011-05-092-20/+29
| | |
| * | Some tests were incorrectly marked as C specific.Ezio Melotti2011-05-091-3/+9
| | |
* | | #11910: merge with 3.2.Ezio Melotti2011-05-091-4/+8
|\ \ \ | |/ /
| * | #11910: merge with 3.1.Ezio Melotti2011-05-091-4/+8
| |\ \ | | |/
| | * #11910: change import_fresh_module to return None when one of the "fresh" ↵Ezio Melotti2011-05-091-4/+8
| | | | | | | | | | | | modules can not be imported.
* | | Merge with 3.2.Ezio Melotti2011-05-091-0/+9
|\ \ \ | |/ /
| * | Merge with 3.1.Ezio Melotti2011-05-091-0/+9
| |\ \ | | |/
| | * Add a note to the str.find doc to suggest the use of the "in" operator.Ezio Melotti2011-05-091-0/+9
| | |
* | | note the point of having log2Benjamin Peterson2011-05-091-1/+2
| | |
* | | Close #12032: Fix scripts/crlf.py for Python 3Victor Stinner2011-05-081-6/+6
| | |
* | | Issue #11888: Add log2 function to math module. Patch written by MarkVictor Stinner2011-05-086-16/+234
| | | | | | | | | | | | Dickinson.
* | | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-085-36/+60
| | | | | | | | | | | | | | | | | | | | | OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
* | | merge 3.2Benjamin Peterson2011-05-081-2/+3
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-05-081-2/+3
| |\ \ | | |/
| | * put import_fresh_module in __all__Benjamin Peterson2011-05-081-0/+1
| | |
* | | Refactor buggy test to correctly use the msg argument of assertRaises.Ezio Melotti2011-05-081-9/+4
| | |
* | | Merge with 3.2.Ezio Melotti2011-05-081-2/+2
|\ \ \ | |/ /
| * | Merge with 3.1.Ezio Melotti2011-05-081-1/+1
| |\ \ | | |/
| | * Add back Misc/NEWS entry that got lost during merge, and fix a couple of ↵Ezio Melotti2011-05-081-3/+5
| | | | | | | | | | | | other things.
* | | Issue #8407: Remove debug code from test_signalVictor Stinner2011-05-081-37/+10
| | | | | | | | | | | | I don't think that we still need it.
* | | Issue #8407: The signal handler writes the signal number as a single byteVictor Stinner2011-05-085-5/+35
| | | | | | | | | | | | | | | instead of a nul byte into the wakeup file descriptor. So it is possible to wait more than one signal and know which signals were raised.
* | | Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to theVictor Stinner2011-05-079-42/+287
| | | | | | | | | | | | signal module.
* | | MergeAntoine Pitrou2011-05-070-0/+0
|\ \ \ | |/ /
| * | MergeAntoine Pitrou2011-05-070-0/+0
| |\ \ | | |/
| | * MergeAntoine Pitrou2011-05-072-1/+10
| | |\
| | | * mergeGiampaolo Rodola'2011-05-072-1/+10
| | | |\
| * | | \ MergeAntoine Pitrou2011-05-074-2/+15
| |\ \ \ \
* | \ \ \ \ MergeAntoine Pitrou2011-05-073-1/+21
|\ \ \ \ \ \
| * \ \ \ \ \ merge with 3.2Giampaolo Rodola'2011-05-073-1/+21
| |\ \ \ \ \ \ | | |/ / / / /
| | * | | | | merge with 3.1Giampaolo Rodola'2011-05-073-1/+21
| | |\ \ \ \ \ | | | | |_|_|/ | | | |/| | |
| | | * | | | #12002 - ftplib's abort() method raises TypeErrorGiampaolo Rodola'2011-05-073-1/+12
| | | | | | |
* | | | | | | Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented.Antoine Pitrou2011-05-074-2/+15
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | / / / | | |_|/ / / | |/| | | |
| * | | | | Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented.Antoine Pitrou2011-05-074-2/+15
| |\ \ \ \ \ | | |/ / / / | |/| | / / | | | |/ / | | |/| |
| | * | | Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ↵Antoine Pitrou2011-05-074-2/+15
| | | |/ | | |/| | | | | | | | | Kasun Herath.
* | | | #5421: merge with 3.2.Ezio Melotti2011-05-071-0/+44
|\ \ \ \ | |/ / /