summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix call signature and markup.Georg Brandl2009-01-131-3/+3
|
* Speed-up __repr__. Eliminate duplicate tests. Use a from-irmport.Raymond Hettinger2009-01-131-48/+3
|
* Fixup and simplify docstrings and doctests.Raymond Hettinger2009-01-131-16/+14
|
* Minor documentation tweaks and simpler update() example.Raymond Hettinger2009-01-131-15/+12
|
* small logic correctionBenjamin Peterson2009-01-131-2/+1
|
* Simplify Counter() API. Replace items keyword argumentRaymond Hettinger2009-01-133-42/+46
| | | | | | | with a mapping. Makes Counter() idempotent, makes update() API the same as Counter.__init__(), makes a more readable repr, makes the API more dict-like, and allows Steven Bethard's update() example to work.
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-129-67/+47
| | | | | | Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
* Issue 1696199: Add collections.Counter().Raymond Hettinger2009-01-124-2/+430
|
* Minor changes/corrections in markup.Vinay Sajip2009-01-121-17/+14
|
* Add tests for invalid format specifiers in strftime, and for handling of ↵Kristján Valur Jónsson2009-01-122-1/+59
| | | | invalid file descriptors in the os module.
* Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size.Raymond Hettinger2009-01-121-1/+46
|
* Misc/NEWS for issue 4293Kristján Valur Jónsson2009-01-121-0/+3
|
* Update Misc/NEWS for issue 3582Kristján Valur Jónsson2009-01-121-0/+2
|
* Issue #4893: Use NT threading on CE.Martin v. Löwis2009-01-123-7/+28
|
* Issue #4915: Port sysmodule to Windows CE.Martin v. Löwis2009-01-122-3/+14
|
* add email addressesBenjamin Peterson2009-01-112-2/+2
|
* Update the documentation for binascii and zlib crc32/adler32 functionsGregory P. Smith2009-01-112-14/+55
| | | | | | | | | | to better describe the signed vs unsigned return value behavior on different platforms and versions of python. Mention the workaround to make them all return the same thing by using & 0xffffffff. Fixes issue4903. Also needs to be merged into release26-maint, release30-maint, & py3k.
* correct email addressGregory P. Smith2009-01-111-2/+2
|
* Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-114-43/+36
|
* Issue #4895: Use _strdup on Windows CE.Martin v. Löwis2009-01-112-0/+8
|
* Issue #4279: Fix build of parsermodule under Cygwin.Martin v. Löwis2009-01-113-0/+4
|
* Fixed version number in build_ssl.bat.Hirokazu Yamamoto2009-01-112-4/+4
|
* macos 9 isn't supportedBenjamin Peterson2009-01-101-1/+0
|
* move seealso to a more appropiate placeBenjamin Peterson2009-01-101-7/+4
|
* make tests fail if they can't be importedBenjamin Peterson2009-01-101-3/+0
|
* Corrected minor typo and added .currentmodule directives to fix missing ↵Vinay Sajip2009-01-101-1/+10
| | | | cross-references.
* Remove an unnecessary check from test_decimal.Mark Dickinson2009-01-101-1/+0
|
* fix encodingBenjamin Peterson2009-01-101-1/+1
|
* Add ACKS entries for some of the patches I've been committing.Antoine Pitrou2009-01-101-0/+6
|
* tp_iter only exists with Py_TPFLAGS_HAVE_ITER #4901Benjamin Peterson2009-01-101-1/+1
|
* rewrite verbose conditionalsBenjamin Peterson2009-01-101-2/+2
|
* - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection onMatthias Klose2009-01-102-4/+39
| | | | biarch systems. Try to rely on ldconfig only, without using objdump and gcc.
* Add NEWS entry for r68484.Antoine Pitrou2009-01-101-0/+2
|
* Issue #3860: GzipFile and BZ2File now support the context manager protocol.Antoine Pitrou2009-01-104-1/+83
|
* Corrected an incorrect self-reference.Vinay Sajip2009-01-101-1/+0
|
* Minor documentation changes cross-referencing NullHandler to the ↵Vinay Sajip2009-01-101-1/+8
| | | | documentation on configuring logging in a library.
* Issue 4906: Preserve windows error state across PyThread_get_key_valueKristján Valur Jónsson2009-01-101-1/+10
|
* Added helper script to build Tcl/Tk.Hirokazu Yamamoto2009-01-101-0/+81
|
* Link to debug version of Tcl/Tk when python is built as debug version.Hirokazu Yamamoto2009-01-102-1/+5
|
* Bump up Tcl/Tk version on VC6. (tcl8.4.12 -> tcl8.5.2, tk8.4.12 -> tk8.5.2, ↵Hirokazu Yamamoto2009-01-103-18/+43
| | | | tix8.4.0 -> tix8.4.3)
* Issue #4074: Change the criteria for doing a full garbage collection (i.e.Antoine Pitrou2009-01-092-1/+71
| | | | | | collecting the oldest generation) so that allocating lots of objects without destroying them does not show quadratic performance. Based on a proposal by Martin von Löwis at http://mail.python.org/pipermail/python-dev/2008-June/080579.html.
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-094-0/+154
| | | | Add test cases and documentation
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-091-22/+146
|
* Issue 4336: Let users of HTTPConnection.endheaders() submit a message body ↵Kristján Valur Jónsson2009-01-092-9/+3
| | | | to the function if required.
* Issue 4336: HTTPRequest._send_output() now deals with the case of the ↵Kristján Valur Jónsson2009-01-091-7/+8
| | | | message body not being a string. This allows clients to use endheaders(message_body) instead of endheaders() + send(message_body) without making any extra checks.
* Issue 3677: Fix import from UNC paths on Windows.Kristján Valur Jónsson2009-01-091-15/+19
|
* Issue 3582. Improved thread support and TLS for WindowsKristján Valur Jónsson2009-01-091-65/+91
|
* Fix issue 4884, preventing a crash in the socket code when python is compiledJeffrey Yasskin2009-01-092-1/+14
| | | | with llvm-gcc and run with a glibc <2.10.
* Bump up bsddb version on VC6. (db-4.4.20 -> db-4.7.25)Hirokazu Yamamoto2009-01-092-11/+11
|
* Bump up bzip2 version on VC6. (bzip2-1.0.3 -> bzip2-1.0.5)Hirokazu Yamamoto2009-01-092-8/+8
|