summaryrefslogtreecommitdiff
path: root/Objects/descrobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-111-6/+6
* fix docstring. extra \.Gregory P. Smith2013-11-251-1/+1
* Document that @property can incorporate a docstring from the getter method. ...Raymond Hettinger2013-11-241-5/+9
* use formats that work on 2.7Benjamin Peterson2012-05-011-7/+6
* fix calling the classmethod descriptor directly (closes #14699)Benjamin Peterson2012-05-011-3/+41
* Fixup repr for dict_proxy objects.Raymond Hettinger2011-06-301-1/+15
* (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-011-3/+6
* remove unused last argument to property_copyBenjamin Peterson2010-06-281-16/+12
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-894/+894
* rewrite for style, clarify, and commentsBenjamin Peterson2009-10-221-12/+15
* whitespaceBenjamin Peterson2009-10-221-1/+1
* Remove unused variable.Georg Brandl2009-05-051-1/+0
* Fix issue 5890: (property subclass shadows __doc__ string) by insertingR. David Murray2009-05-041-16/+23
* many more types to initialize (I had to expose some of them)Benjamin Peterson2009-04-181-4/+4
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-11/+11
* Renamed PyString to PyBytesChristian Heimes2008-05-261-11/+11
* Prevent namespace pollution, add static for internal functionsNeal Norwitz2008-04-151-3/+3
* Issue #2115: __slot__ attributes setting was 10x slower.Amaury Forgeot d'Arc2008-02-151-1/+1
* Fix refleakNeal Norwitz2007-12-311-0/+1
* Fixed bug #1620: New @spam.getter property syntax modifies the property in pl...Christian Heimes2007-12-141-33/+70
* Re-word sentenceAndrew M. Kuchling2007-11-121-1/+1
* Added new decorator syntax to property.__doc__Christian Heimes2007-11-121-4/+14
* Issue 1416. Add getter, setter, deleter methods to properties that can beGuido van Rossum2007-11-101-1/+55
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-16/+8
* Change fix for segfaulting property(), add a NEWS entry and a test.Georg Brandl2006-08-041-10/+12
* Fix bug caused by first decrefing, then increfing.Georg Brandl2006-08-041-5/+4
* Put method-wrappers into trashcan. Fixes #927248.Martin v. Löwis2006-07-031-1/+3
* (arre, arigo) SF bug #1350060Armin Rigo2006-06-081-7/+19
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-40/+8
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-2/+2
* Patch #1434038: property() now uses the getter's docstring if there isGeorg Brandl2006-03-081-0/+12
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-4/+4
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Added proper reflection on instances of <type 'method-wrapper'>, e.g.Armin Rigo2005-11-071-13/+46
* As per discussion on python-dev, descriptors defined in C with a NULL setterBarry Warsaw2005-04-191-2/+2
* Use PyDict_Contains() instead of PySequence_Contains().Raymond Hettinger2003-12-131-2/+2
* Return a bool rather than an int from proxy_has_key().Guido van Rossum2003-10-091-1/+4
* SF patch #798467: Update docstring of has_key for bool changesRaymond Hettinger2003-09-011-1/+1
* property_traverse() should also traverse into prop_doc -- there's noGuido van Rossum2003-04-091-0/+1
* Put proper tests in classmethod_get(). Remove the type argument toGuido van Rossum2003-02-111-16/+47
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* SF 548651: Fix the METH_CLASS implementation.Tim Peters2002-12-091-0/+72
* Added comparison functions to dict proxies.Raymond Hettinger2002-08-311-2/+14
* Make PyDescr_IsData() a macro. It's too simple to be a function.Guido van Rossum2002-08-191-6/+0
* Simple but important optimization for descr_check(): instead of theGuido van Rossum2002-08-191-1/+1
* Allow more docstrings to be removed during compilationNeal Norwitz2002-08-131-9/+11
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-1/+1