Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f8057854
Kaydet (Commit)
f8057854
authored
Eyl 09, 2007
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
email address update
üst
9bc2dd63
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
15 additions
and
15 deletions
+15
-15
dbtables.py
Lib/bsddb/dbtables.py
+1
-1
dbutils.py
Lib/bsddb/dbutils.py
+1
-1
test_dbtables.py
Lib/bsddb/test/test_dbtables.py
+1
-1
hashlib.py
Lib/hashlib.py
+1
-1
md5.py
Lib/md5.py
+1
-1
sha.py
Lib/sha.py
+1
-1
test_hashlib.py
Lib/test/test_hashlib.py
+1
-1
_bsddb.c
Modules/_bsddb.c
+4
-4
_hashopenssl.c
Modules/_hashopenssl.c
+1
-1
sha256module.c
Modules/sha256module.c
+1
-1
sha512module.c
Modules/sha512module.c
+1
-1
shamodule.c
Modules/shamodule.c
+1
-1
No files found.
Lib/bsddb/dbtables.py
Dosyayı görüntüle @
f8057854
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
# software has been tested, but no warranty is expressed or
# software has been tested, but no warranty is expressed or
# implied.
# implied.
#
#
# -- Gregory P. Smith <greg@
electricrain.com
>
# -- Gregory P. Smith <greg@
krypto.org
>
# This provides a simple database table interface built on top of
# This provides a simple database table interface built on top of
# the Python BerkeleyDB 3 interface.
# the Python BerkeleyDB 3 interface.
...
...
Lib/bsddb/dbutils.py
Dosyayı görüntüle @
f8057854
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
# software has been tested, but no warranty is expressed or
# software has been tested, but no warranty is expressed or
# implied.
# implied.
#
#
# Author: Gregory P. Smith <greg@
electricrain.com
>
# Author: Gregory P. Smith <greg@
krypto.org
>
#
#
# Note: I don't know how useful this is in reality since when a
# Note: I don't know how useful this is in reality since when a
# DBLockDeadlockError happens the current transaction is supposed to be
# DBLockDeadlockError happens the current transaction is supposed to be
...
...
Lib/bsddb/test/test_dbtables.py
Dosyayı görüntüle @
f8057854
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
# software has been tested, but no warranty is expressed or
# software has been tested, but no warranty is expressed or
# implied.
# implied.
#
#
# -- Gregory P. Smith <greg@
electricrain.com
>
# -- Gregory P. Smith <greg@
krypto.org
>
#
#
# $Id$
# $Id$
...
...
Lib/hashlib.py
Dosyayı görüntüle @
f8057854
# $Id$
# $Id$
#
#
# Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
# Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
# Licensed to PSF under a Contributor Agreement.
# Licensed to PSF under a Contributor Agreement.
#
#
...
...
Lib/md5.py
Dosyayı görüntüle @
f8057854
# $Id$
# $Id$
#
#
# Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
# Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
# Licensed to PSF under a Contributor Agreement.
# Licensed to PSF under a Contributor Agreement.
import
warnings
import
warnings
...
...
Lib/sha.py
Dosyayı görüntüle @
f8057854
# $Id$
# $Id$
#
#
# Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
# Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
# Licensed to PSF under a Contributor Agreement.
# Licensed to PSF under a Contributor Agreement.
import
warnings
import
warnings
...
...
Lib/test/test_hashlib.py
Dosyayı görüntüle @
f8057854
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# $Id$
# $Id$
#
#
# Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
# Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
# Licensed to PSF under a Contributor Agreement.
# Licensed to PSF under a Contributor Agreement.
#
#
...
...
Modules/_bsddb.c
Dosyayı görüntüle @
f8057854
...
@@ -39,16 +39,16 @@
...
@@ -39,16 +39,16 @@
* to compile with BerkeleyDB versions 3.2 through 4.2.
* to compile with BerkeleyDB versions 3.2 through 4.2.
*
*
* This module was started by Andrew Kuchling to remove the dependency
* This module was started by Andrew Kuchling to remove the dependency
* on SWIG in a package by Gregory P. Smith
<greg@electricrain.com> who
* on SWIG in a package by Gregory P. Smith
who based his work on a
*
based his work on a similar package by Robin Dunn <robin@alldunn.com>
*
similar package by Robin Dunn <robin@alldunn.com> which wrapped
*
which wrapped
Berkeley DB 2.7.x.
* Berkeley DB 2.7.x.
*
*
* Development of this module then returned full circle back to Robin Dunn
* Development of this module then returned full circle back to Robin Dunn
* who worked on behalf of Digital Creations to complete the wrapping of
* who worked on behalf of Digital Creations to complete the wrapping of
* the DB 3.x API and to build a solid unit test suite. Robin has
* the DB 3.x API and to build a solid unit test suite. Robin has
* since gone onto other projects (wxPython).
* since gone onto other projects (wxPython).
*
*
* Gregory P. Smith <greg@
electricrain.com
> is once again the maintainer.
* Gregory P. Smith <greg@
krypto.org
> is once again the maintainer.
*
*
* Use the pybsddb-users@lists.sf.net mailing list for all questions.
* Use the pybsddb-users@lists.sf.net mailing list for all questions.
* Things can change faster than the header of this file is updated. This
* Things can change faster than the header of this file is updated. This
...
...
Modules/_hashopenssl.c
Dosyayı görüntüle @
f8057854
/* Module that wraps all OpenSSL hash algorithms */
/* Module that wraps all OpenSSL hash algorithms */
/*
/*
* Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
* Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
* Licensed to PSF under a Contributor Agreement.
* Licensed to PSF under a Contributor Agreement.
*
*
* Derived from a skeleton of shamodule.c containing work performed by:
* Derived from a skeleton of shamodule.c containing work performed by:
...
...
Modules/sha256module.c
Dosyayı görüntüle @
f8057854
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
Greg Stein (gstein@lyra.org)
Greg Stein (gstein@lyra.org)
Trevor Perrin (trevp@trevp.net)
Trevor Perrin (trevp@trevp.net)
Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
Licensed to PSF under a Contributor Agreement.
Licensed to PSF under a Contributor Agreement.
*/
*/
...
...
Modules/sha512module.c
Dosyayı görüntüle @
f8057854
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
Greg Stein (gstein@lyra.org)
Greg Stein (gstein@lyra.org)
Trevor Perrin (trevp@trevp.net)
Trevor Perrin (trevp@trevp.net)
Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
Licensed to PSF under a Contributor Agreement.
Licensed to PSF under a Contributor Agreement.
*/
*/
...
...
Modules/shamodule.c
Dosyayı görüntüle @
f8057854
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
Andrew Kuchling (amk@amk.ca)
Andrew Kuchling (amk@amk.ca)
Greg Stein (gstein@lyra.org)
Greg Stein (gstein@lyra.org)
Copyright (C) 2005 Gregory P. Smith (greg@
electricrain.com
)
Copyright (C) 2005 Gregory P. Smith (greg@
krypto.org
)
Licensed to PSF under a Contributor Agreement.
Licensed to PSF under a Contributor Agreement.
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment