Miss Islington (bot)
|
a9e0b070b3
|
bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832)
(cherry picked from commit 6f600ff173 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
|
2018-02-26 06:25:40 -08:00 |
Serhiy Storchaka
|
55fe1ae970
|
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
|
2017-04-16 10:46:38 +03:00 |
Serhiy Storchaka
|
228b12edcc
|
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
possible. Patch is writen with Coccinelle.
|
2017-01-23 09:47:21 +02:00 |
Serhiy Storchaka
|
2a404b63d4
|
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
is now of type "const char *" rather of "char *".
|
2017-01-22 23:07:07 +02:00 |
Serhiy Storchaka
|
2954f83999
|
- Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
|
2016-07-07 18:20:03 +03:00 |
Serhiy Storchaka
|
1a2b24f02d
|
Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
|
2016-07-07 17:35:15 +03:00 |
Serhiy Storchaka
|
2d06e84455
|
Issue #25923: Added the const qualifier to static constant arrays.
|
2015-12-25 19:53:18 +02:00 |
Larry Hastings
|
38337d1e15
|
Issue #24000: Improved Argument Clinic's mapping of converters to legacy
"format units". Updated the documentation to match.
|
2015-05-07 23:30:09 -07:00 |
Larry Hastings
|
dbfdc380df
|
Issue #24001: Argument Clinic converters now use accept={type}
instead of types={'type'} to specify the types the converter accepts.
|
2015-05-04 06:59:46 -07:00 |
Serhiy Storchaka
|
9260e77386
|
Issue #20184: Converted _dbm and _gdbm modules to Argument Clinic.
|
2015-04-17 21:05:18 +03:00 |
Nick Coghlan
|
c610aba1ed
|
Close #19282: Native context management in dbm
|
2013-11-17 15:59:51 +10:00 |
Serhiy Storchaka
|
4f056d43d6
|
Issue #19288: Fixed the "in" operator of dbm.gnu databases for string
argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
|
2013-10-25 00:08:13 +03:00 |
Serhiy Storchaka
|
7d6392c517
|
Issue #19288: Fixed the "in" operator of dbm.gnu databases for string
argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
|
2013-10-25 00:06:52 +03:00 |
Antoine Pitrou
|
9ed5f27266
|
Issue #18722: Remove uses of the "register" keyword in C code.
|
2013-08-13 20:18:52 +02:00 |
Georg Brandl
|
d9e833c70a
|
#6045: provide at least get() and setdefault() for all dbm modules.
|
2010-12-04 09:14:36 +00:00 |
Antoine Pitrou
|
f95a1b3c53
|
Recorded merge of revisions 81029 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines
Untabify C files. Will watch buildbots.
........
|
2010-05-09 15:52:27 +00:00 |
Mark Dickinson
|
e94c679df0
|
Issue #1717: rename tp_compare to tp_reserved. I'll change the
type of tp_compare in a separate commit, for ease of reversion
should things go wrong.
|
2009-02-02 20:36:42 +00:00 |
Brett Cannon
|
7317c1ef7a
|
dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For the
former they are converted to bytes before being written to the DB.
Closes issue 3799. Reviewed by Skip Montanaro.
|
2008-11-25 19:19:17 +00:00 |
Amaury Forgeot d'Arc
|
1f900f1f69
|
#3247: get rid of Py_FindMethod
Third step: unix-only modules. Really remove the function this time.
|
2008-07-02 22:38:47 +00:00 |
Martin v. Löwis
|
1a21451b1d
|
Implement PEP 3121: new module initialization and finalization API.
|
2008-06-11 05:26:20 +00:00 |
Georg Brandl
|
b17acad68e
|
Make db modules' error classes inherit IOError.
Stop dbm from importing every dbm module when imported.
|
2008-05-28 08:43:17 +00:00 |
Christian Heimes
|
72b710a596
|
Renamed PyString to PyBytes
|
2008-05-26 13:28:38 +00:00 |
Georg Brandl
|
0a7ac7d70d
|
Create the dbm package from PEP 3108. #2881.
|
2008-05-26 10:29:35 +00:00 |