cpython/Objects
Miss Islington (bot) 64ca728223
bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641)
`object.__new__` and `object.__init__` do take one argument each,
they just don't take extra user supplied arguments.

Patch by Sanyam Khurana.
(cherry picked from commit 5105483acb)

Co-authored-by: Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com>
2019-02-19 05:47:13 -08:00
..
clinic
stringlib bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718) 2018-11-26 14:17:01 +01:00
README
abstract.c bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) 2019-02-17 15:33:04 -08:00
accu.c
boolobject.c
bytearrayobject.c bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) 2018-10-14 14:26:28 -07:00
bytes_methods.c
bytesobject.c bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_FromFormat(). (GH-11276) 2019-01-12 00:52:55 -08:00
call.c
capsule.c bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020) 2018-12-07 14:17:43 +02:00
cellobject.c bpo-33029: Fix signatures of getter and setter functions. (GH-10746) 2018-11-27 09:58:07 -08:00
classobject.c bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) 2018-12-11 10:51:27 +02:00
codeobject.c bpo-24618: Add a check in the code constructor. (GH-8283) 2018-07-16 00:09:44 -07:00
complexobject.c
descrobject.c bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) 2018-12-11 10:51:27 +02:00
dict-common.h bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537) (GH-6543) 2018-04-20 10:06:21 -07:00
dictnotes.txt
dictobject.c bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) 2018-09-25 21:17:52 -07:00
enumobject.c
exceptions.c bpo-33029: Fix signatures of getter and setter functions. (GH-10746) 2018-11-27 09:58:07 -08:00
fileobject.c bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) 2018-11-12 22:20:21 -08:00
floatobject.c Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251) 2018-03-26 03:58:10 -07:00
frameobject.c bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) 2018-12-17 07:10:20 -08:00
funcobject.c bpo-33029: Fix signatures of getter and setter functions. (GH-10746) 2018-11-27 09:58:07 -08:00
genobject.c bpo-33029: Fix signatures of getter and setter functions. (GH-10746) 2018-11-27 09:58:07 -08:00
iterobject.c
listobject.c closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380) 2019-01-01 18:25:23 -08:00
listsort.txt
lnotab_notes.txt
longobject.c bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705) 2018-10-05 14:28:56 -07:00
memoryobject.c bpo-33029: Fix signatures of getter and setter functions. (GH-10746) 2018-11-27 09:58:07 -08:00
methodobject.c bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) 2018-12-11 10:51:27 +02:00
moduleobject.c [3.7] Fix misleading mentions of tp_size in comments. (GH-9136) 2018-09-10 10:22:55 -07:00
namespaceobject.c bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077) 2018-12-10 23:05:13 -08:00
object.c [3.7] bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662) 2018-11-22 17:15:37 +01:00
obmalloc.c [3.7] bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662) 2018-11-22 17:15:37 +01:00
odictobject.c bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748) 2018-11-27 20:27:47 +02:00
rangeobject.c Fix a possible crash in range.__reversed__(). (GH-10252) 2018-10-31 02:31:29 -07:00
setobject.c bpo-1621: Avoid signed integer overflow in set_table_resize() (GH-9059) (GH-9198) 2018-10-20 00:50:34 +02:00
sliceobject.c bpo-35961: Fix a crash in slice_richcompare() (GH-11830) 2019-02-13 03:49:34 -08:00
structseq.c
tupleobject.c
typeobject.c bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) 2019-02-19 05:47:13 -08:00
typeslots.inc
typeslots.py
unicodectype.c
unicodeobject.c bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_FromFormat(). (GH-11276) 2019-01-12 00:52:55 -08:00
unicodetype_db.h update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) (GH-7470) 2018-06-07 03:36:22 -04:00
weakrefobject.c

README

Source files for various builtin objects