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
cb6727e8
Kaydet (Commit)
cb6727e8
authored
Mar 02, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Prepare for 2.3.7c1.
üst
d254ca88
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
12 deletions
+13
-12
patchlevel.h
Include/patchlevel.h
+4
-4
LICENSE
LICENSE
+4
-3
python-2.3.spec
Misc/RPM/python-2.3.spec
+1
-1
getcopyright.c
Python/getcopyright.c
+1
-1
README
README
+3
-3
No files found.
Include/patchlevel.h
Dosyayı görüntüle @
cb6727e8
...
@@ -21,12 +21,12 @@
...
@@ -21,12 +21,12 @@
/* Version parsed out into numeric values */
/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION 2
#define PY_MAJOR_VERSION 2
#define PY_MINOR_VERSION 3
#define PY_MINOR_VERSION 3
#define PY_MICRO_VERSION
6
#define PY_MICRO_VERSION
7
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
FINAL
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
GAMMA
#define PY_RELEASE_SERIAL
0
#define PY_RELEASE_SERIAL
1
/* Version as a string */
/* Version as a string */
#define PY_VERSION "2.3.
6
"
#define PY_VERSION "2.3.
7c1
"
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
...
...
LICENSE
Dosyayı görüntüle @
cb6727e8
...
@@ -49,6 +49,7 @@ the various releases.
...
@@ -49,6 +49,7 @@ the various releases.
2.3.4 2.3.3 2004 PSF yes
2.3.4 2.3.3 2004 PSF yes
2.3.5 2.3.4 2004-2005 PSF yes
2.3.5 2.3.4 2004-2005 PSF yes
2.3.6 2.3.5 2006 PSF yes
2.3.6 2.3.5 2006 PSF yes
2.3.7 2.3.6 2008 PSF yes
Footnotes:
Footnotes:
...
@@ -84,9 +85,9 @@ license to reproduce, analyze, test, perform and/or display publicly,
...
@@ -84,9 +85,9 @@ license to reproduce, analyze, test, perform and/or display publicly,
prepare derivative works, distribute, and otherwise use Python 2.3
prepare derivative works, distribute, and otherwise use Python 2.3
alone or in any derivative version, provided, however, that PSF's
alone or in any derivative version, provided, however, that PSF's
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
2001, 2002, 2003, 2004
Python Software Foundation; All Rights Reserved"
are
2001, 2002, 2003, 2004
, 2005, 2006, 2007, 2008 Python Softw
are
retained in Python 2.3 alone or in any derivative version prepared by
Foundation; All Rights Reserved" are retained in Python 2.3 alone or
Licensee.
in any derivative version prepared by
Licensee.
3. In the event Licensee prepares a derivative work that is based on
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python 2.3 or any part thereof, and wants to make
or incorporates Python 2.3 or any part thereof, and wants to make
...
...
Misc/RPM/python-2.3.spec
Dosyayı görüntüle @
cb6727e8
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
#################################
#################################
%define name python
%define name python
%define version 2.3.
6
%define version 2.3.
7
%define libvers 2.3
%define libvers 2.3
%define release 1pydotorg
%define release 1pydotorg
%define __prefix /usr
%define __prefix /usr
...
...
Python/getcopyright.c
Dosyayı görüntüle @
cb6727e8
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
static
char
cprt
[]
=
static
char
cprt
[]
=
"\
"\
Copyright (c) 2001-200
5
Python Software Foundation.
\n
\
Copyright (c) 2001-200
8
Python Software Foundation.
\n
\
All Rights Reserved.
\n
\
All Rights Reserved.
\n
\
\n
\
\n
\
Copyright (c) 2000 BeOpen.com.
\n
\
Copyright (c) 2000 BeOpen.com.
\n
\
...
...
README
Dosyayı görüntüle @
cb6727e8
This is Python version 2.3.
6
This is Python version 2.3.
7c1
============================
============================
==
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006
, 2007, 2008
Python Software Foundation.
All rights reserved.
All rights reserved.
Copyright (c) 2000 BeOpen.com.
Copyright (c) 2000 BeOpen.com.
...
...
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