index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Modules
/
_struct.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka
2015-02-03
1
-10
/
+13
*
- Modules/_struct.c (unpackiter_type): Define static.
doko
2013-11-23
1
-1
/
+1
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-1
/
+1
|
\
|
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-1
/
+1
*
|
Issue #14596: The struct.Struct() objects now use more compact implementation.
Serhiy Storchaka
2013-05-17
1
-79
/
+94
*
|
Issue #17804: New function ``struct.iter_unpack`` allows for streaming struct...
Antoine Pitrou
2013-04-27
1
-0
/
+165
*
|
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...
Antoine Pitrou
2013-02-09
1
-11
/
+10
|
\
\
|
|
/
|
/
|
|
*
#14897: Enhance error messages of struct.pack and struct.pack_into
Petri Lehtinen
2012-10-29
1
-11
/
+10
|
|
\
|
|
*
Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified
Christian Heimes
2012-10-17
1
-11
/
+10
*
|
|
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...
Antoine Pitrou
2013-02-09
1
-1
/
+89
|
\
\
\
|
|
/
/
|
*
|
#14897: Enhance error messages of struct.pack and struct.pack_into
Petri Lehtinen
2012-10-29
1
-4
/
+14
|
|
\
\
|
|
|
/
|
|
/
|
|
*
|
Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.
Meador Inge
2012-07-28
1
-6
/
+2
|
|
\
\
|
*
\
\
Issue #15402: Add a __sizeof__ method to struct.Struct.
Meador Inge
2012-07-23
1
-0
/
+17
|
|
\
\
\
|
*
|
|
|
Issue #3163: The struct module gets new format characters 'n' and 'N'
Antoine Pitrou
2011-10-06
1
-1
/
+89
*
|
|
|
|
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...
Antoine Pitrou
2013-02-09
1
-2
/
+2
|
|
_
|
_
|
/
|
/
|
|
|
*
|
|
|
#14897: Enhance error messages of struct.pack and struct.pack_into
Petri Lehtinen
2012-10-29
1
-4
/
+14
|
|
_
|
/
|
/
|
|
*
|
|
Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.
Meador Inge
2012-07-28
1
-6
/
+2
|
|
/
|
/
|
*
|
Issue #15402: Add a __sizeof__ method to struct.Struct.
Meador Inge
2012-07-23
1
-0
/
+17
|
/
*
#11515: Merge with 3.1.
Ezio Melotti
2011-03-15
1
-1
/
+1
|
\
|
*
#11515: fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-15
1
-1
/
+1
|
*
Merged revisions 83239 via svnmerge from
Mark Dickinson
2010-07-29
1
-0
/
+3
|
*
Merged revisions 82941 via svnmerge from
Mark Dickinson
2010-07-18
1
-2
/
+2
|
*
Merged revisions 82628,82630 via svnmerge from
Benjamin Peterson
2010-07-07
1
-2
/
+8
|
*
Merged revisions 81965 via svnmerge from
Mark Dickinson
2010-06-13
1
-2
/
+2
|
*
Merged revisions 81961 via svnmerge from
Mark Dickinson
2010-06-12
1
-1
/
+5
|
*
Merged revisions 81947-81950,81955-81956 via svnmerge from
Mark Dickinson
2010-06-12
1
-22
/
+37
|
*
Merged revisions 81897-81898,81902 via svnmerge from
Mark Dickinson
2010-06-11
1
-22
/
+29
|
*
Recorded merge of revisions 81032 via svnmerge from
Antoine Pitrou
2010-05-09
1
-1252
/
+1252
|
*
Merged revisions 75284 via svnmerge from
Mark Dickinson
2009-10-08
1
-6
/
+8
|
*
Merged revisions 73882 via svnmerge from
Mark Dickinson
2009-07-07
1
-1
/
+1
|
*
Merged revisions 73623-73624 via svnmerge from
Benjamin Peterson
2009-06-28
1
-0
/
+2
*
|
Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8
Victor Stinner
2010-12-28
1
-21
/
+6
*
|
Include structseq.h in Python.h, and remove now-redundant includes in individ...
Georg Brandl
2010-11-30
1
-1
/
+0
*
|
Issue #9422: Fix memory leak when re-initializing a struct.Struct object.
Mark Dickinson
2010-07-29
1
-0
/
+3
*
|
Issue #9277: Struct module: standard bool packing was incorrect if
Mark Dickinson
2010-07-18
1
-2
/
+2
*
|
don't ignore exceptions from PyObject_IsTrue
Benjamin Peterson
2010-07-07
1
-2
/
+8
*
|
Remove unnecessary brackets from docstring optional arguments.
Mark Dickinson
2010-06-13
1
-2
/
+2
*
|
Issue #8973: Expanded Struct.__doc__.
Alexander Belopolsky
2010-06-12
1
-1
/
+5
*
|
More struct module docs and docstring tweaks.
Mark Dickinson
2010-06-12
1
-4
/
+4
*
|
Issue #8973: Improve struct module docstrings.
Mark Dickinson
2010-06-12
1
-22
/
+37
*
|
Remove accidental (yet-to-be-reviewed) docstring changes included in r81947.
Mark Dickinson
2010-06-12
1
-28
/
+21
*
|
Issue #8973: Add __all__ to struct module, so that help(struct) correctly
Mark Dickinson
2010-06-12
1
-21
/
+28
*
|
Remove unused variable.
Mark Dickinson
2010-06-12
1
-1
/
+1
*
|
Issue #8981: Remove _struct.__version__.
Mark Dickinson
2010-06-12
1
-6
/
+0
*
|
Fix more undefined-behaviour inducing overflow checks in struct module.
Mark Dickinson
2010-06-11
1
-19
/
+23
*
|
Fix an incorrect return type.
Mark Dickinson
2010-06-11
1
-1
/
+1
*
|
Avoid possible undefined behaviour from signed overflow.
Mark Dickinson
2010-06-11
1
-3
/
+6
*
|
Issue #3129: Trailing digits in format string are no longer ignored.
Alexander Belopolsky
2010-06-11
1
-2
/
+5
*
|
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-1262
/
+1262
*
|
Merged revisions 79751 via svnmerge from
Mark Dickinson
2010-04-04
1
-25
/
+25
[next]