summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* fix encoding cookie caseBenjamin Peterson2009-01-181-1/+1
* fix test that wasn't working as expected #4990Benjamin Peterson2009-01-181-1/+1
* issue 4301: patch logging to add processName, remove the old _check_logger_cl...Jesse Noller2009-01-182-24/+10
* issue 4293: make test_capi.py more robutst, it times out on some platforms, ...Kristján Valur Jónsson2009-01-181-6/+29
* Resolve issue 4449: AssertionError in mp_benchmarks.pyJesse Noller2009-01-182-6/+24
* follow-up of #3997: since 0xFFFF numbers are not enough to indicate a zip64 f...Amaury Forgeot d'Arc2009-01-171-11/+6
* fix inspect.isclass() on instances with a custom __getattr__ #1225107Benjamin Peterson2009-01-172-2/+13
* #3997: zipfiles generated with more than 65536 files could not be openedAmaury Forgeot d'Arc2009-01-171-7/+13
* trying to find some fpathconf() settings that all unixs support...Benjamin Peterson2009-01-171-1/+1
* use enumerateBenjamin Peterson2009-01-171-2/+2
* compare with == not is #4946Benjamin Peterson2009-01-161-1/+1
* Make all the invalid fd tests for os subject to the function being available.Kristján Valur Jónsson2009-01-151-6/+12
* Fix two test cases in test_os. ftruncate raises IOError unlike all the other...Kristján Valur Jónsson2009-01-151-2/+5
* Issue 4929: Handle socket errors when receivingKristján Valur Jónsson2009-01-151-1/+4
* Comment typoMark Dickinson2009-01-151-1/+1
* Issue #4397. Fix occasional test_socket failure on OS X.Mark Dickinson2009-01-151-0/+4
* Fix recently introduced test cases.Kristján Valur Jónsson2009-01-152-5/+14
* Re-enable all tests for windows platforms.Kristján Valur Jónsson2009-01-141-25/+24
* Add tests for __init__() and update() with no args.Raymond Hettinger2009-01-141-0/+2
* fix test_xmlrpc failures #4939Benjamin Peterson2009-01-131-1/+1
* #1162154: inspect.getmembers() now skips attributes that raise AttributeError,Amaury Forgeot d'Arc2009-01-132-1/+15
* Use assertRaises.Georg Brandl2009-01-131-6/+1
* ast.literal_eval can properly evaluate complex numbers now. This fixes issue...Armin Ronacher2009-01-132-0/+23
* Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard().Raymond Hettinger2009-01-131-2/+2
* 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
* Simplify Counter() API. Replace items keyword argumentRaymond Hettinger2009-01-132-26/+30
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-122-53/+22
* Issue 1696199: Add collections.Counter().Raymond Hettinger2009-01-122-2/+299
* Add tests for invalid format specifiers in strftime, and for handling of inva...Kristján Valur Jónsson2009-01-122-1/+59
* Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size.Raymond Hettinger2009-01-121-1/+46
* Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-114-43/+36
* make tests fail if they can't be importedBenjamin Peterson2009-01-101-3/+0
* Remove an unnecessary check from test_decimal.Mark Dickinson2009-01-101-1/+0
* - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection onMatthias Klose2009-01-101-4/+36
* Issue #3860: GzipFile and BZ2File now support the context manager protocol.Antoine Pitrou2009-01-103-1/+51
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-091-0/+67
* Issue 4336: Let users of HTTPConnection.endheaders() submit a message body t...Kristján Valur Jónsson2009-01-092-9/+3
* Issue 4336: HTTPRequest._send_output() now deals with the case of the messag...Kristján Valur Jónsson2009-01-091-7/+8
* Merged revisions 68306-68308,68340,68368,68422 via svnmerge fromBenjamin Peterson2009-01-094-8/+15
* fixed #4394 make the storage of the password optional in .pypircTarek Ziadé2009-01-086-38/+117
* Forward port r68394 for issue 4816.Raymond Hettinger2009-01-081-9/+33
* Issue #4869: clarify documentation for random.expovariate.Mark Dickinson2009-01-071-3/+5
* Issue #4864: test_msvc9compiler failed on VC6/7.Hirokazu Yamamoto2009-01-071-0/+4
* Use shutil.rmtree rather than os.rmdir.Antoine Pitrou2009-01-061-1/+1
* Issue #1180193: When importing a module from a .pyc (or .pyo) file withAntoine Pitrou2009-01-061-1/+93
* Issue #4272: Add an optional argument to the GzipFile constructor to override...Antoine Pitrou2009-01-042-4/+79
* More Python 2.3 compatibility fixes for decimal.py.Mark Dickinson2009-01-041-4/+4
* Fix Decimal.from_float to use valid Python 2.3 syntax, as perMark Dickinson2009-01-041-3/+11
* using clearer syntaxTarek Ziadé2009-01-041-2/+7