Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1316)

Delta Between Two Patch Sets: Objects/object.c

Issue 13703: Hash collision security issue
Left Patch Set: Created 1 year, 3 months ago
Right Patch Set: Created 1 year, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « Objects/bytesobject.c ('k') | Objects/unicodeobject.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 1
2 /* Generic object operations; and implementation of None (NoObject) */ 2 /* Generic object operations; and implementation of None (NoObject) */
3 3
4 #include "Python.h" 4 #include "Python.h"
5 #include "sliceobject.h" /* For PyEllipsis_Type */ 5 #include "sliceobject.h" /* For PyEllipsis_Type */
6 #include "frameobject.h" 6 #include "frameobject.h"
7 7
8 #ifdef __cplusplus 8 #ifdef __cplusplus
9 extern "C" { 9 extern "C" {
10 #endif 10 #endif
(...skipping 1874 matching lines...) Expand 10 before | Expand all | Expand 10 after
1885 assert(op->ob_refcnt == 0); 1885 assert(op->ob_refcnt == 0);
1886 ++_PyTrash_delete_nesting; 1886 ++_PyTrash_delete_nesting;
1887 (*dealloc)(op); 1887 (*dealloc)(op);
1888 --_PyTrash_delete_nesting; 1888 --_PyTrash_delete_nesting;
1889 } 1889 }
1890 } 1890 }
1891 1891
1892 #ifdef __cplusplus 1892 #ifdef __cplusplus
1893 } 1893 }
1894 #endif 1894 #endif
LEFTRIGHT

RSS Feeds Recent Issues | This issue
This is Rietveld cbc36f91f3f7