Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

bpo-32075: Expose ZipImporter Type Object in the include header files.#4470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
AraHaan wants to merge12 commits intopython:masterfromAraHaan:issue32075
Closed
Changes from1 commit
Commits
Show all changes
12 commits
Select commitHold shift + click to select a range
2db24da
bpo-32075: Expose ZipImporter Type Object in the include header files.
AraHaanNov 19, 2017
297288a
bpo-32075: Fix Windows CI.
AraHaanNov 19, 2017
194c7b4
bpo-32075: Remove zipimport.h from Python.h.
AraHaanNov 19, 2017
2c7656c
bpo-32075: Fixed zipimport.c.
AraHaanNov 19, 2017
1901323
bpo-32075: fix zipimport.h and add to Python.h.
AraHaanNov 20, 2017
6cc282a
bpo-32075: Make ZipImporter_Type non-static.
AraHaanNov 20, 2017
3df3f09
Added an zipimporter doc and some changes.
AraHaanNov 20, 2017
6a31123
bpo-32075: Reference zipimporter.rst in docs.
AraHaanNov 20, 2017
87f56fc
bpo-32075: Update zipimport clinic manually.
AraHaanNov 20, 2017
d1db629
bpo-32075: Actually regenerate clinic.
AraHaanNov 20, 2017
8826977
bpo-32075: Add news entry.
AraHaanNov 20, 2017
e742b93
bpo-32075: changed docs.
AraHaanNov 20, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
bpo-32075: Fix Windows CI.
  • Loading branch information
@AraHaan
AraHaan committedNov 19, 2017
commit297288a379f4727c152a8d5ecf605b7af43c5f55
3 changes: 1 addition & 2 deletionsInclude/zipimport.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,6 @@ extern "C" {

/* zipimporter object definition and support */

typedef struct _zipimporter ZipImporter;

struct _zipimporter {
PyObject_HEAD
PyObject *archive; /* pathname of the Zip archive,
Expand All@@ -17,6 +15,7 @@ struct _zipimporter {
PyObject *files; /* dict with file info {path: toc_entry} */
};

typedef struct _zipimporter ZipImporter;
static PyTypeObject ZipImporter_Type;

#define ZipImporter_Check(op) PyObject_TypeCheck(op, &ZipImporter_Type)
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp