summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Add Misc/NEWS entry for r79609.Mark Dickinson2010-04-031-0/+6
|
* Issue #8300: Let struct.pack use __index__ to convert and pack non-integers.Mark Dickinson2010-04-031-0/+5
| | | | Based on a patch by Meador Inge.
* Add subtract() method to collections.Counter() objects.Raymond Hettinger2010-04-031-0/+2
|
* Issue #1222585: Added LDCXXSHARED for C++ supportTarek Ziadé2010-04-031-0/+2
|
* give TypeError when trying to set T_STRING_INPLACEBenjamin Peterson2010-04-031-0/+2
|
* Add note about #1220212 (os.kill on Windows)Brian Curtin2010-04-021-0/+3
|
* Issue #8038: Addition of unittest.TestCase.assertNotRegexpMatchesMichael Foord2010-04-021-0/+5
|
* Issue #8294: Allow float and Decimal arguments in Fraction constructor.Mark Dickinson2010-04-021-0/+3
|
* Add a line about #7347 to Misc\NewsBrian Curtin2010-04-021-0/+3
|
* Issue 7994: Make object.__format__ with a non-empty format string a ↵Eric Smith2010-04-021-0/+8
| | | | PendingDecprecationWarning. Still need to remove uses of this from various tests.
* Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB isLarry Hastings2010-04-021-0/+3
| | | | a socket option available on FreeBSD 7.1 and newer.
* Capsule-related changes:Larry Hastings2010-04-021-1/+3
| | | | | | | | | | | * PyCObject_AsVoidPtr() can now open capsules. This addresses most of the remaining backwards-compatibility concerns about the conversion of Python 2.7 from CObjects to capsules. * CObjects were marked Pending Deprecation. * Documentation about this pending deprecation was added to cobject.h. * The capsule source files were added to the legacy PC build processes.
* Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable.Mark Dickinson2010-04-021-1/+2
| | | | | | Also rewrite the Decimal __hash__ method so that it doesn't rely on float('inf') being valid: float('inf') could raise an exception on platforms not using IEEE 754 arithmetic.
* Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation.Mark Dickinson2010-04-021-0/+4
|
* Issue #2531: Make float-to-decimal comparisons return correct results.Mark Dickinson2010-04-021-0/+5
| | | | | | | Float to decimal comparison operations now return a result based on the numeric values of the operands. Decimal.__hash__ has also been fixed so that Decimal and float values that compare equal have equal hash value.
* Issue #8276: PyEval_CallObject() is now only available in macro form. TheAntoine Pitrou2010-04-011-0/+4
| | | | | function declaration, which was kept for backwards compatibility reasons, is now removed (the macro was introduced in 1997!).
* Issue #8032: For gdb7, a python-gdb.py file is added to the build,Martin v. Löwis2010-04-012-0/+4
| | | | allowing to use advanced gdb features when debugging Python.
* Issue #8268: Old-style classes (not just instances) now support weakAntoine Pitrou2010-03-311-0/+3
| | | | references.
* - Issue #8233: When run as a script, py_compile.py optionally takes a singleBarry Warsaw2010-03-311-2/+7
| | | | | | argument `-` which tells it to read files to compile from stdin. Each line is read on demand and the named file is compiled immediately. (Original patch by Piotr Ożarowski).
* Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi.Antoine Pitrou2010-03-302-0/+3
|
* add inspect.getcallargs, which binds function arguments like a normal call #3135Benjamin Peterson2010-03-301-0/+3
| | | | Patch by George Sakkis
* fix ACKS: alphabetic order and UTF-8Florent Xicluna2010-03-301-3/+3
|
* #8263: Now regrtest.py will report a failure if it receives a ↵Florent Xicluna2010-03-301-0/+3
| | | | KeyboardInterrupt (SIGINT).
* Highlight the change of behavior related to r79494. Now VT and FF are ↵Florent Xicluna2010-03-301-2/+3
| | | | linebreaks.
* #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according ↵Florent Xicluna2010-03-301-0/+4
| | | | to Unicode Standard Annex #14.
* Backport of weakref.WeakSet and tests from Python 3.Michael Foord2010-03-291-0/+2
|
* Add Misc/NEWS entry for r79455.Mark Dickinson2010-03-271-0/+5
|
* Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that ↵Antoine Pitrou2010-03-261-1/+3
| | | | | | | | blocking reads and writes are always retried by OpenSSL itself. (this is a followup to issue #3890)
* #8207: Fix test_pep277 on OS XFlorent Xicluna2010-03-251-2/+2
|
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-0/+6
| | | | CObject to PyCapsule.
* Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, compilerVictor Stinner2010-03-251-0/+3
| | | | optimizations are disabled when --with-pydebug is used.
* Add Brian Curtin.Martin v. Löwis2010-03-241-0/+2
|
* logging: Added LOG_FTP for SysLogHandler and updated documentation.Vinay Sajip2010-03-241-0/+2
|
* Issue #8205: Remove the "Modules" directory from sys.path when Python is ↵Florent Xicluna2010-03-221-0/+3
| | | | running from the build directory (POSIX only).
* #7667: Fix doctest failures with non-ASCII paths.Florent Xicluna2010-03-221-0/+2
|
* Issue #7512: shutil.copystat() could raise an OSError when the filesystemAntoine Pitrou2010-03-221-0/+4
| | | | | didn't support chflags() (for example ZFS under FreeBSD). The error is now silenced.
* Issue #7703: ctypes supports both buffer() and memoryview(). The former is ↵Florent Xicluna2010-03-221-0/+3
| | | | | | deprecated. Complement of r79288.
* Issue #7860: platform.uname now reports the correct 'machine' typeR. David Murray2010-03-221-0/+3
| | | | | when Python is running in WOW64 mode on 64 bit Windows. Patch by Brian Curtin.
* logging: Added getChild utility method to Logger and added isEnabledFor ↵Vinay Sajip2010-03-221-0/+3
| | | | method to LoggerAdapter.
* pybsddb 4.8.4 integration. Please, comment in issue #8156Jesus Cea2010-03-221-1/+3
|
* Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger ↵Vinay Sajip2010-03-221-0/+4
| | | | names exist at the same time.
* Fix the NEWS about my last commit: an unicode subclass can now override theVictor Stinner2010-03-221-1/+1
| | | | | | __unicode__ method (and not the __str__ method). Simplify also the testcase.
* Issue #8200: logging: Handle errors when multiprocessing is not fully loaded ↵Vinay Sajip2010-03-221-0/+3
| | | | when logging occurs.
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-0/+2
|
* improve error message from passing inadequate number of keyword arguments #6474Benjamin Peterson2010-03-211-0/+3
| | | | Note this removes the "non-keyword" or "keyword" phrases from these messages.
* Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.Antoine Pitrou2010-03-211-0/+2
|
* Issue #1628484: The Makefile doesn't ignore the CFLAGS environmentAntoine Pitrou2010-03-211-0/+4
| | | | | variable anymore. It also forwards the LDFLAGS settings to the linker when building a shared library.
* Fix plural.Georg Brandl2010-03-211-1/+1
|
* #8180: Fix test_pep277 on OS X and add more tests for special Unicode ↵Florent Xicluna2010-03-211-0/+3
| | | | normalization cases.
* Issue #8179: Fix macpath.realpath() on a non-existing path.Florent Xicluna2010-03-211-0/+2
|