| .. | 
		
		
			
			
			
			
				| stringlib | Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. | 2010-02-23 00:11:16 +00:00 | 
		
			
			
			
			
				| abstract.c | Pull a NULL pointer check up to cover more cases in the function. | 2010-05-04 01:23:36 +00:00 | 
		
			
			
			
			
				| boolobject.c | This reverts r63675 based on the discussion in this thread: | 2008-06-09 04:58:54 +00:00 | 
		
			
			
			
			
				| bufferobject.c | Change the warning emitted for using the buffer() object; memoryview() in 3.0 | 2008-08-08 04:15:53 +00:00 | 
		
			
			
			
			
				| bytearrayobject.c | tiny simplification | 2010-04-16 22:52:44 +00:00 | 
		
			
			
			
			
				| bytes_methods.c | Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. | 2009-04-27 19:04:37 +00:00 | 
		
			
			
			
			
				| capsule.c | Backported PyCapsule from 3.1, and converted most uses of | 2010-03-25 00:54:54 +00:00 | 
		
			
			
			
			
				| cellobject.c | This reverts r63675 based on the discussion in this thread: | 2008-06-09 04:58:54 +00:00 | 
		
			
			
			
			
				| classobject.c | Issue #8268: Old-style classes (not just instances) now support weak | 2010-03-31 21:32:15 +00:00 | 
		
			
			
			
			
				| cobject.c | Capsule-related changes: | 2010-04-02 11:01:35 +00:00 | 
		
			
			
			
			
				| codeobject.c | Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. | 2010-03-18 21:54:01 +00:00 | 
		
			
			
			
			
				| complexobject.c | #7482: clarify error message in case of division by zero of float and complex numbers. | 2010-02-22 16:30:58 +00:00 | 
		
			
			
			
			
				| descrobject.c | rewrite for style, clarify, and comments | 2009-10-22 02:50:38 +00:00 | 
		
			
			
			
			
				| dictnotes.txt | Patch #1397848: add the reasoning behind no-resize-on-shrinkage. | 2007-02-15 09:51:35 +00:00 | 
		
			
			
			
			
				| dictobject.c | Issue #8404: Fix set operations on dictionary views. | 2010-05-04 03:21:51 +00:00 | 
		
			
			
			
			
				| enumobject.c | #6994: fix typo in enumerate docstring | 2009-09-25 16:07:55 +00:00 | 
		
			
			
			
			
				| exceptions.c | Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. | 2010-02-24 14:15:36 +00:00 | 
		
			
			
			
			
				| fileobject.c | more _PyString_Resize error checking | 2010-04-03 00:57:33 +00:00 | 
		
			
			
			
			
				| floatobject.c | #7482: clarify error message in case of division by zero of float and complex numbers. | 2010-02-22 16:30:58 +00:00 | 
		
			
			
			
			
				| frameobject.c | Fix compilation error with gcc 4.3.2 | 2009-06-01 23:23:16 +00:00 | 
		
			
			
			
			
				| funcobject.c | remove the check that classmethod's argument is a callable | 2009-09-01 22:27:57 +00:00 | 
		
			
			
			
			
				| genobject.c | Fix a wrong struct field assignment (docstring as closure). | 2009-03-31 01:25:15 +00:00 | 
		
			
			
			
			
				| intobject.c | Improve error message from nb_int returning a non-integer, in various PyInt_As* functions: | 2010-05-02 09:38:43 +00:00 | 
		
			
			
			
			
				| iterobject.c | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | 2007-07-21 06:55:02 +00:00 | 
		
			
			
			
			
				| listobject.c | #8030: more docstring fix for builtin types. | 2010-02-28 23:59:00 +00:00 | 
		
			
			
			
			
				| listsort.txt | Issue #5341: Fix a variety of spelling errors. | 2009-02-21 20:27:01 +00:00 | 
		
			
			
			
			
				| lnotab_notes.txt | Issue #6042: | 2009-05-23 23:23:01 +00:00 | 
		
			
			
			
			
				| longobject.c | Issue #8328: Silence Visual Studio warnings. | 2010-04-07 08:24:44 +00:00 | 
		
			
			
			
			
				| memoryobject.c | Issue #7385: Fix a crash in MemoryView_FromObjectwhen | 2010-02-02 22:36:17 +00:00 | 
		
			
			
			
			
				| methodobject.c | only order comparisons are removed in py3k #6119 | 2009-07-02 17:06:17 +00:00 | 
		
			
			
			
			
				| moduleobject.c | only clear a module's __dict__ if the module is the only one with a reference to it #7140 | 2009-10-15 15:44:46 +00:00 | 
		
			
			
			
			
				| object.c | Use a better NaN test in _Py_HashDouble as well. | 2010-04-05 18:54:51 +00:00 | 
		
			
			
			
			
				| obmalloc.c | disable pymalloc tricks with the --with-valgrind option #2422 | 2009-12-03 02:52:39 +00:00 | 
		
			
			
			
			
				| rangeobject.c | Silence MSVC warning about unary minus applied to unsigned type. | 2009-11-16 17:33:25 +00:00 | 
		
			
			
			
			
				| setobject.c | Issue 8436: set.__init__ accepts keyword args | 2010-04-18 22:57:57 +00:00 | 
		
			
			
			
			
				| sliceobject.c | many more types to initialize (I had to expose some of them) | 2009-04-18 22:15:26 +00:00 | 
		
			
			
			
			
				| stringobject.c | always check _PyString_Resize for error | 2010-04-02 23:59:41 +00:00 | 
		
			
			
			
			
				| structseq.c | Fix: | 2008-08-24 05:04:52 +00:00 | 
		
			
			
			
			
				| tupleobject.c | #8030: more docstring fix for builtin types. | 2010-02-28 23:59:00 +00:00 | 
		
			
			
			
			
				| typeobject.c | Issue 7994: Make object.__format__ with a non-empty format string a PendingDecprecationWarning. Still need to remove uses of this from various tests. | 2010-04-02 12:30:56 +00:00 | 
		
			
			
			
			
				| unicodectype.c | #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, | 2009-10-06 19:56:32 +00:00 | 
		
			
			
			
			
				| unicodeobject.c | Remove an unneeded variable and assignment. | 2010-05-04 01:16:51 +00:00 | 
		
			
			
			
			
				| unicodetype_db.h | #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. | 2010-03-30 08:24:06 +00:00 | 
		
			
			
			
			
				| weakrefobject.c | #5037 proxy __unicode__ correctly | 2009-11-19 03:00:02 +00:00 |