- 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
- 629f9f2 Add Chris Withers. by Martin v. Löwis · 16 years ago
- 15d5765 Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only by Guilherme Polo · 16 years ago
- 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 16 years ago
- 6d6c1fd Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string. by Guilherme Polo · 16 years ago
- 943b24e Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler by Tarek Ziadé · 16 years ago
- 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
- eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 16 years ago
- e89b8e9 Backport 70111: Let configparser use ordered dicts by default. by Raymond Hettinger · 16 years ago
- 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 16 years ago
- bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
- 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 16 years ago
- ae91d09 Adds an optional flags argument to re.split, re.sub and re.subn to be by Gregory P. Smith · 16 years ago
- ad58b7c fix a silly problem of caching gone wrong #5401 by Benjamin Peterson · 16 years ago
- b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
- f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
- 7334735 Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command by Tarek Ziadé · 16 years ago
- dda92f7 Issue #5052: make Distutils compatible with 2.3 again. by Tarek Ziadé · 16 years ago
- b3dd548 remove deprecated symtable.Symbol methods by Benjamin Peterson · 16 years ago
- e3bc0ef Fixed #5316 : test failure in test_site by Tarek Ziadé · 16 years ago
- 8ad554f - Link the shared python library with $(MODLIBS). by Matthias Klose · 16 years ago
- 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
- e9fb686 Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments. by Eric Smith · 16 years ago
- 1a0d2be #5287: Add exception handling around findCaller() call to help out IronPython. by Vinay Sajip · 16 years ago
- 08259e8 Py3k warnings now automatically include -Qwarn for division. by Raymond Hettinger · 16 years ago
- 0e5001e fixed the data_files inclusion behavior by Tarek Ziadé · 16 years ago
- 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
- f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
- 7dd5339 Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files by Tarek Ziadé · 16 years ago
- 5781f32 remove some PyBytes_* aliases that are not in 3.x by Benjamin Peterson · 16 years ago
- b6d0a52 Added Ross Light to ACKS, for bug 4285 (r69331). by Eric Smith · 16 years ago
- 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
- 1369900 Fix for #5257: refactored all tests in distutils, so they use a temporary directory. by Tarek Ziadé · 16 years ago
- 2432b0b Fixed #4524: distutils build_script command failed with --with-suffix=3 by Tarek Ziadé · 16 years ago
- 275958a Issue #2461: added tests for distutils.util by Tarek Ziadé · 16 years ago
- 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 16 years ago
- ea38826 - Issue #3745: Fix hashlib to always reject unicode and non buffer-api by Gregory P. Smith · 16 years ago
- 39c6f7f Typo fix. by Mark Dickinson · 16 years ago
- 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
- 3605b5c Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even by Gregory P. Smith · 16 years ago
- 3689ae2 Issue#5203: ctypes segfaults when passing a unicode string to a by Thomas Heller · 16 years ago
- 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 16 years ago
- a3e3cb7 Issue #5134: Silence compiler warnings when compiling sqlite with VC++. by Martin v. Löwis · 16 years ago
- 74fbf60 Fixed #3386: the optional prefix argument was ignored under OS2 and NT in distutils.sysconfig.get_python_lib by Tarek Ziadé · 16 years ago
- 28d1088 compileall used the ctime of bytecode and source to determine if the bytecode by Brett Cannon · 16 years ago
- 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 16 years ago
- a66cf5b Fixed issue #5122: Synchronize tk load failure check to prevent a by Guilherme Polo · 16 years ago
- d2ea033 Fixed issue #4890: Handle empty text search pattern in Tkinter.Text.search by Guilherme Polo · 16 years ago
- c97c909 Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. by Mark Dickinson · 16 years ago
- b20af94 Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5. by Vinay Sajip · 16 years ago
- 0194f5b Issue #4512 closeout: Make ZipImport.get_filename() a public method by Nick Coghlan · 16 years ago
- c3623b1 Mention patch submitter in NEWS entry for r69419 by Nick Coghlan · 16 years ago
- d39600e Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) by Nick Coghlan · 16 years ago
- 92c3b21 Issue #999042: The Python compiler now handles explict global statements by Neil Schemenauer · 16 years ago
- 363161a Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will by Guilherme Polo · 16 years ago
- 14ff18d Partial fix to issue #1731706: memory leak in Tkapp_Call when calling by Guilherme Polo · 16 years ago
- 05adf07 fixed #1520877: now distutils reads Read from the environment/Makefile by Tarek Ziadé · 16 years ago
- 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 16 years ago
- d5eb985 Fixed #1276768: verbose option was not used in the code. by Tarek Ziadé · 16 years ago
- 0d4fd34 Fixed #5132: enable extensions to link on Solaris by Tarek Ziadé · 16 years ago
- b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
- d7bb4d4 NEWS entry for issue #1581476 by Guilherme Polo · 16 years ago
- fee1c7f Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows. by Martin v. Löwis · 16 years ago
- de1a8b7 - Issue #5104: The socket module now raises OverflowError when 16-bit port and by Gregory P. Smith · 16 years ago
- 707c593 Issue #2047: shutil.move() could believe that its destination path was by Antoine Pitrou · 16 years ago
- f779e6f Issue 4920: Fixed next() vs __next__() issues in the ABCs by Raymond Hettinger · 16 years ago
- b1a98de Issue #5083: New 'gui' resource for regrtest. by Guilherme Polo · 16 years ago
- 4eae078 Demos for ttk added. by Guilherme Polo · 16 years ago
- cda93aa Added the ttk module. See issue #2983: Ttk support for Tkinter. by Guilherme Polo · 16 years ago
- ecf252a Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 16 years ago
- d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 16 years ago
- 93881c6 Backport importlib in the form of providing importlib.import_module(). This has by Brett Cannon · 16 years ago
- aaedcef Fixed #1885: --formats=tar,gztar was not working properly in the sdist command by Tarek Ziadé · 16 years ago
- 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 16 years ago
- ef249b1 Fixed #4863: removed distutils.mwerkscompiler by Tarek Ziadé · 16 years ago
- b5a4b0a Properly document multiprocessing's logging support, resolve outstanding issues with the custom levels by Jesse Noller · 16 years ago
- a3ecd2c Issue #1672332: Fix unpickling of subnormal floats, which was raising by Mark Dickinson · 16 years ago
- f081e1c Issue #3881: Help Tcl to load even when started through the by Martin v. Löwis · 16 years ago
- 0dfcfc8 Issue #4710: Extract directories properly in the zipfile module; by Martin v. Löwis · 16 years ago
- f6da8d1 Issue 3807: multiprocessing fails to compile under --without-threads by Jesse Noller · 16 years ago
- e741cc6 Issue #5008: When a file is opened in append mode with the new IO library, by Antoine Pitrou · 16 years ago
- 5fb11b2 Issue 5013: Fixed bug in FileHandler when delay was set. by Vinay Sajip · 16 years ago
- 933d3a7 Issue 4998: __slots__ on Fractions was useless. by Raymond Hettinger · 16 years ago
- e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 16 years ago
- 596d306 add a note about the ftruncate change by Benjamin Peterson · 16 years ago
- 9a5b2ad Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check handle by Jesse Noller · 16 years ago
- 5848d1f raise an OSError for invalid fds #4991 by Benjamin Peterson · 16 years ago
- 438195f issue 4301: patch logging to add processName, remove the old _check_logger_class code by Jesse Noller · 16 years ago
- 6ab2215 Resolve issue 4449: AssertionError in mp_benchmarks.py by Jesse Noller · 16 years ago
- 5e5fbb6 fix inspect.isclass() on instances with a custom __getattr__ #1225107 by Benjamin Peterson · 16 years ago
- d25f87a #3997: zipfiles generated with more than 65536 files could not be opened by Amaury Forgeot d'Arc · 16 years ago
- a200dd5 Another typo fix. by Mark Dickinson · 16 years ago
- e82cdae Issue #4397. Fix occasional test_socket failure on OS X. by Mark Dickinson · 16 years ago
- b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 16 years ago
- a18392a #4807: Remove a wrong usage of wsprintf in the winreg module by Amaury Forgeot d'Arc · 16 years ago
- c2f0221 Issue #4935: The overflow checking code in the expandtabs() method common by Antoine Pitrou · 16 years ago
- a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
- f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 16 years ago
- c22ab18 Misc/NEWS for issue 4293 by Kristján Valur Jónsson · 16 years ago
- 6220e41 Update Misc/NEWS for issue 3582 by Kristján Valur Jónsson · 16 years ago