• 大小: 1019KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-29
  • 语言: 其他
  • 标签: glew-2.0.0  

资源简介

glew-2.0.0.zip glew-2.0.0.zip

资源截图

代码片段和文件信息

#!/usr/bin/python

import re

section = re.compile(‘^(Name|Name Strings?|Contact|Notice|Number|Dependencies|Overview|Issues|IP Status|Status|Version|New Procedures and Functions|New Tokens|Additions to .*|Changes to .*|Modifications to .*|Add new Section .*)\s*$‘)
token   = re.compile(‘^\s+(([A-Z0-9][A-Z0-9_x]*):?\s+((?:0x)?[0-9A-F]+)([^\?]*))?\s*$‘)
match   = [ ‘Name‘ ‘Name String‘ ‘Contact‘ ‘Notice‘ ‘Name Strings‘ ‘Version‘ ‘Number‘ ‘Dependencies‘ ‘New Procedures and Functions‘ ‘New Tokens‘]

if __name__ == ‘__main__‘:

  from optparse import OptionParser
  import os

  parser = OptionParser(‘usage: %prog [options] [SOURCES...]‘)
  (options args) = parser.parse_args()

  for i in args:
      lines = open(i).readlines()
      f = open(i‘w‘)

      # Keep track of the current section as we iterate over the input
      current = ‘‘
      for j in lines:

          # Detect the start of a new section
          m = section.match(j)
          if m:
              current = m.group(1).strip()
              if current in match:
                  print >>f j
              continue

          if current==‘New Tokens‘:
              if token.match(j):
                  print >>f j
          elif current in match:
                  print >>f j


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-07-24 00:43  glew-2.0.0\
     目录           0  2016-07-24 00:43  glew-2.0.0\bin\
     目录           0  2016-07-24 00:43  glew-2.0.0\lib\
     目录           0  2016-07-24 00:43  glew-2.0.0\auto\
     文件       14810  2016-07-24 00:43  glew-2.0.0\auto\Makefile
     目录           0  2016-07-24 00:43  glew-2.0.0\auto\bin\
     文件       22164  2016-07-24 00:43  glew-2.0.0\auto\bin\filter_gl_ext.sh
     文件         522  2016-07-24 00:43  glew-2.0.0\auto\bin\filter_gles_ext.sh
     文件        1271  2016-07-24 00:43  glew-2.0.0\auto\bin\filter_spec.py
     文件        5452  2016-07-24 00:43  glew-2.0.0\auto\bin\make.pl
     文件         851  2016-07-24 00:43  glew-2.0.0\auto\bin\make_def_fun.pl
     文件         792  2016-07-24 00:43  glew-2.0.0\auto\bin\make_def_var.pl
     文件        1112  2016-07-24 00:43  glew-2.0.0\auto\bin\make_enable_index.pl
     文件        1697  2016-07-24 00:43  glew-2.0.0\auto\bin\make_header.pl
     文件        1453  2016-07-24 00:43  glew-2.0.0\auto\bin\make_html.pl
     文件         915  2016-07-24 00:43  glew-2.0.0\auto\bin\make_index.pl
     文件        1617  2016-07-24 00:43  glew-2.0.0\auto\bin\make_info.pl
     文件        1303  2016-07-24 00:43  glew-2.0.0\auto\bin\make_info_list.pl
     文件        1619  2016-07-24 00:43  glew-2.0.0\auto\bin\make_init.pl
     文件        1156  2016-07-24 00:43  glew-2.0.0\auto\bin\make_initd.pl
     文件        1928  2016-07-24 00:43  glew-2.0.0\auto\bin\make_list.pl
     文件        1143  2016-07-24 00:43  glew-2.0.0\auto\bin\make_list2.pl
     文件        1491  2016-07-24 00:43  glew-2.0.0\auto\bin\make_str.pl
     文件         875  2016-07-24 00:43  glew-2.0.0\auto\bin\make_struct_fun.pl
     文件         797  2016-07-24 00:43  glew-2.0.0\auto\bin\make_struct_var.pl
     文件       13438  2016-07-24 00:43  glew-2.0.0\auto\bin\parse_spec.pl
     文件        4080  2016-07-24 00:43  glew-2.0.0\auto\bin\parse_xml.py
     文件         698  2016-07-24 00:43  glew-2.0.0\auto\bin\update_ext.sh
     文件         352  2016-07-24 00:43  glew-2.0.0\auto\blacklist
     目录           0  2016-07-24 00:43  glew-2.0.0\auto\core\
     目录           0  2016-07-24 00:43  glew-2.0.0\auto\core\gl\
............此处省略1080个文件信息

评论

共有 条评论

相关资源