summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 74f388b6a410a64f91618378a5f845e25d6dd671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
commit bb8adb7f02f0c5494df2cb6e535e44d23902e8f5
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:   Tue Jun 29 11:27:13 2010 +0200

    Update NEWS and release PyGObject-2.21.4

 NEWS |   27 +++++++++++++++++++++++++--
 1 files changed, 25 insertions(+), 2 deletions(-)

commit 2d473ee17be4671244bb4a2a0953a21ccf2a0df6
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:   Tue Jun 29 10:55:03 2010 +0200

    Remove files from the makefiles

 gi/Makefile.am      |    4 +---
 gobject/Makefile.am |    3 +--
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 89827314fd183eac07443c8e9d275ca9d4ce59df
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:   Tue Jun 29 10:27:39 2010 +0200

    Build the cairo shim as a python module so the _gi module stops
    linking to it

    https://bugzilla.gnome.org/show_bug.cgi?id=623021

 configure.ac            |    2 +
 gi/Makefile.am          |   38 +++++++++-----
 gi/gimodule.c           |    8 +---
 gi/pygi-argument.c      |   10 +---
 gi/pygi-foreign-cairo.c |   56 ++++++++++++++++-----
 gi/pygi-foreign-cairo.h |   55 ---------------------
 gi/pygi-foreign.c       |  125
 ++++++++++++++++++++++++++++-------------------
 gi/pygi-foreign.h       |   31 +++++------
 gi/pygi.h               |   40 +++++++++++++--
 9 files changed, 196 insertions(+), 169 deletions(-)

commit a6a90551311bc64f037cbd442e13f70c30060871
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:   Mon Jun 28 14:20:43 2010 +0200

    Remove pygi-external.h

    https://bugzilla.gnome.org/show_bug.cgi?id=623021

 gi/gimodule.c           |    8 +++---
 gi/pygi-type.c          |    4 +-
 gi/pygi-type.h          |    2 +-
 gi/pygi.h               |   54 +++++++++++++++----------------------
 gobject/Makefile.am     |    6 ++++
 gobject/pygboxed.c      |    2 +-
 gobject/pygenum.c       |    2 +-
 gobject/pygflags.c      |    2 +-
 gobject/pygi-external.h |   67
 -----------------------------------------------
 gobject/pygobject.c     |    2 +-
 gobject/pygpointer.c    |    2 +-
 11 files changed, 40 insertions(+), 111 deletions(-)

commit 8b3a3baacb45cb3f9112f7597607602fa89c6634
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:   Fri Jun 25 13:54:57 2010 +0200

    Revert "correctly handle floating objects in gtk"

    This reverts commit 60fdf4b8f738dd0f5c190bc18ddf010032d3c5ca.

    Conflicts:

	gi/gimodule.c
	tests/test_everything.py

 gi/gimodule.c		  |   13 -------------
 tests/test_everything.py |    3 ++-
 2 files changed, 2 insertions(+), 14 deletions(-)

commit 0f2a09d7eae63abb71723b7cd8fb290dcba33426
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Fri Jun 25 13:49:04 2010 +0200

    Make valgrind happy again

    * gi/pygi-argument.c, gi/pygi-info.c: Zero two GArgument instances.
    * gi/pygi-invoke.c: workaround bgo#622711 and zero invocation_state.

 gi/pygi-argument.c |	 1 +
 gi/pygi-info.c     |	 2 ++
 gi/pygi-invoke.c   |	 8 ++++++--
 3 files changed, 9 insertions(+), 2 deletions(-)

commit 63afe55906c8637e913783e65b82b540b81bed65
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Thu Jun 24 16:13:37 2010 -0400

    add drawing area demo

 demos/gtk-demo/demos/drawingarea.py |	249
 +++++++++++++++++++++++++++++++++++
 1 files changed, 249 insertions(+), 0 deletions(-)

commit 8bba5f842393a284367cdd15f3d32a8c7745516a
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Thu Jun 24 14:11:00 2010 -0400

    sort the demo list

 demos/gtk-demo/gtk-demo.py |	 2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit b9da82742701ed276b01dee39626cd71cbef8556
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Thu Jun 24 13:56:18 2010 -0400

    rename iter to treeiter so we aren't using a python reserved word

 demos/gtk-demo/gtk-demo.py |	12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

commit c93935621f2fb1ff5e8c424ae884bd684ea68e50
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Thu Jun 24 13:47:54 2010 -0400

    Fixup for change in buffer API

    * Part of buffer API dealing with TextIter now marked (out
    caller-allocates)

 demos/gtk-demo/gtk-demo.py |	10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

commit 8d9516a593a515290109401a9db7aa259b5aa35c
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed Jun 23 17:04:33 2010 -0400

    add ListStore, TreeStore and TreeViewColumn APIs

    * this is enough to support the gtk-demo.py shell
    * TreeStore and ListStore allow passing in as an argument list
      of either python or GLib types to the constructor as a description
      of the columns in the model
    * TreeStore and ListStore override the append method, allowing
      the application developer to send in a list of column values
      for one row in the model.  Unlike the append in C which
      just returns an iter that you can then add data to,
      this append actualy appends data in one step
    * TreeViewColumn overrides the constructor to allow the adding
      of attributes and a cell renderer when constructing the
      column

    https://bugzilla.gnome.org/show_bug.cgi?id=620405

 gi/overrides/Gtk.py	 |   59 ++++++++++++++++++++++++++++++++++++++++
 tests/test_overrides.py |   69
 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 128 insertions(+), 0 deletions(-)

commit c305fbeb7bdb44623d5198f4a8f0a374d529fdf4
Author: Johan Dahlin <johan@gnome.org>
Date:	Wed Jun 23 14:34:28 2010 -0300

    [gi] Add -I../gobject to cflags

    Since we're no longer pulling in pygobject cflags,
    add this to be able to include pygobject.h

 gi/Makefile.am |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit 53a093198851e3ba5abd1f6c3314737decd401d8
Author: Ignacio Casal Quinteiro <icq@gnome.org>
Date:	Wed Jun 23 18:09:19 2010 +0200

    Add unit test for add_actions user data.

 tests/test_overrides.py |   20 +++++++++++++++-----
 1 files changed, 15 insertions(+), 5 deletions(-)

commit 7f829af620cba768de619dd9f228d5d2ebf7fee4
Author: Paolo Borelli <pborelli@gnome.org>
Date:	Wed Jun 23 18:06:46 2010 +0200

    Pass user_data param when adding actions

 gi/overrides/Gtk.py |	 12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

commit 8f537ccd62f41ebe0db3853e2ae08080666f598f
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed Jun 23 12:02:04 2010 -0400

    add an exception type to the try/except block

    * we should always specify what exception types we are expecting

 gi/overrides/Gtk.py |	  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit f140a8ebf59347162b67b550bd6f62d2eafad29a
Author: Johan Dahlin <johan@gnome.org>
Date:	Wed Jun 23 12:31:51 2010 -0300

    Avoid duplicating required versions

    Avoid duplicating the version of all required packages.
    Also remove cyclic dependency of pygobject

    https://bugzilla.gnome.org/show_bug.cgi?id=622503

 configure.ac |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

commit e8bd25355fbe7de38a28b7a0583167a2c0ffc31f
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 22 15:03:08 2010 -0400

    return PyList instead of PyTuple for array, return empty list for
    NULL arrays

    * returns an empty list when a NULL array (empty array) is encountered
    * fix tests to check for lists instead of tuples or None
    * test the ability to send in both None and empty list for arrays
    and lists

 gi/pygi-argument.c	  |    7 ++--
 tests/test_everything.py |    5 ++-
 tests/test_gi.py	  |   84
 +++++++++++++++++++++++-----------------------
 3 files changed, 49 insertions(+), 47 deletions(-)

commit f312e6a49505eca07815146cfbdb0e48e5b3b8a8
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed Jun 23 15:42:29 2010 +0200

    Fix 'make distcheck'

     * Makefile.am: put the tests dir to the end
     * g*/Makefile.am: build the .so when running make check
     * tests/Makefile.am: Don't pass the src dir to runtests.py and
       remove (hopefully) unneeded cruft.
     * tests/common.py: Don't add the src dir to the python path
     * tests/runtests.py: Don't pass the src dir to common.py

 Makefile.am	     |	  4 +++-
 gi/Makefile.am      |	  1 +
 gio/Makefile.am     |	  1 +
 glib/Makefile.am    |	  2 +-
 gobject/Makefile.am |	  1 +
 tests/Makefile.am   |	 17 ++---------------
 tests/common.py     |	  3 +--
 tests/runtests.py   |	 12 +++++-------
 8 files changed, 15 insertions(+), 26 deletions(-)

commit 5f82e7d2909cbbbecbf5dbee2342f516c0d1f371
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed Jun 23 13:59:14 2010 +0200

    Allow building pygobject without introspection support by providing
    --disable-introspection to configure.

 Makefile.am		 |    6 +++++-
 configure.ac		 |   15 ++++++++-------
 gobject/pygi-external.h |    4 ++--
 tests/Makefile.am	 |    8 ++++++--
 tests/runtests.py	 |   21 +++++++--------------
 5 files changed, 28 insertions(+), 26 deletions(-)

commit cc3ea77318ee572673d2a044deca9001366b0f08
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed Jun 23 12:26:51 2010 +0200

    Make sure that sys.argv is a list and not a sequence.

    Because Python's optparse will try to do things on it that can
    only be done with list.

 gi/overrides/Gtk.py |	  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 3d72b8248cc534a689dee5679a729b2fba56c528
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed Jun 23 12:26:02 2010 +0200

    Force loading the GObject typelib so we have available the wrappers
    for base classes such as GInitiallyUnowned.

 gi/__init__.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit c7c94ef349c30597f2f10d90f74718d678ec7add
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 22 14:45:48 2010 -0400

    we shouldn't g_array_free NULL pointers

    https://bugzilla.gnome.org/show_bug.cgi?id=622425

 gi/pygi-info.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

commit fb1ee243493616d7a7e4f6924c574db39f5a423d
Merge: acf7b43 5f9cb91
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed Jun 23 12:53:05 2010 +0200

    Merge branch 'pygi'

commit 5f9cb91c2b3851056d5e2d7ff1401d4ce2be7c1f
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 22 15:39:46 2010 -0400

    remove unneeded TextIter creation in the tests

 tests/test_overrides.py |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

commit 53c355d2cc0894e7f551e9b4eb719b89188a978e
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 21 11:42:12 2010 -0400

    add override for TextBuffer

    * TextBuffer.create_tag takes vargs which we can't bind yet so
    change it
      to except a keyword list of properties
    * override the insert* methods so the developer does not have to
    enter a length
      - lengths are already encapsulated by a string in Python

    https://bugzilla.gnome.org/show_bug.cgi?id=620583

 gi/overrides/Gtk.py	 |   51
 +++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_overrides.py |   25 +++++++++++++++++++++++
 2 files changed, 76 insertions(+), 0 deletions(-)

commit 1d89a88b212c7411ad28e74eda80ae751de92e50
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 22 12:46:39 2010 -0400

    fix up some build issues

    * configure.ac: moved AM_PROG_CC_C_O below AM_PROG_CC_STDC because
    autoconf
      was complaining that AM_PROG_CC_STDC can't come after AM_PROC_CC_C_0
    * tests/Makefile.am: fix check-local target to use EXEC_NAME so
    targets like
      make check.gdb work

 configure.ac	   |	2 +-
 tests/Makefile.am |	2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 4fe0d94c219deb69a2309693202309c53a0e5e69
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 22 11:50:30 2010 -0400

    make the overrides file git friendly by appending to __all__ after
    each override

    * modifying the __all__ line for each override would confuse git as
      each override needs to get seperate approval before comitting.
      Because of
      this commits would not always go in in the same order as they
      are created.
      Also different people working on the same file would start from
      different
      commit states.  This caused conflicts when patches were merged.
    * instead of modifying a single hard coded list we now append to
    the list
      after each override.  This creates distinct blocks of changed text
      which will not conflict

 gi/overrides/GIMarshallingTests.py |	10 ++++------
 gi/overrides/Gdk.py		    |	 8 ++++----
 gi/overrides/Gtk.py		    |	 7 +++++--
 3 files changed, 13 insertions(+), 12 deletions(-)

commit 49321b934603e1ec69fb04082c63902970907d2b
Author: Paolo Borelli <pborelli@gnome.org>
Date:	Sun Jun 20 13:27:34 2010 +0200

    Override Dialog constructor and add_buttons method

 gi/overrides/Gtk.py	 |   46
 +++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_overrides.py |   16 ++++++++++++++++
 2 files changed, 61 insertions(+), 1 deletions(-)

commit acf7b43a41ce814f0c57ce609a090826f04771db
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon Jun 21 18:17:38 2010 +0200

    Post release version bump to 2.21.4

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit a7fa8b80406227a06cf18f8675dbc1f471283829
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon Jun 21 18:10:32 2010 +0200

    Update NEWS and release PyGObject-2.21.3

 NEWS |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

commit 79acac7b86ec52cd3681d94d7f116314c3f00167
Author: Ludovic L'Hours <ludovic.lhours@gmail.com>
Date:	Tue Jul 21 16:28:34 2009 +0200

    Proper handling of null-ok in virtual methods

    https://bugzilla.gnome.org/show_bug.cgi?id=589253

 codegen/codegen.py	   |	2 ++
 codegen/reversewrapper.py |   18 +++++++++++++++---
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 259a4b08f009aa01451caed20dbb6e68b402da2a
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon Jun 21 17:34:54 2010 +0200

    Add *~ and *.orig to .gitignore

 .gitignore |	 5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

commit 00a85f6a844714d1715e2f67431747d1a4cdacb1
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon Jun 21 17:33:56 2010 +0200

    Fall back to use the floating references API in glib if there isn't
    a sinkfunc defined.

    * tests/*: Add ref counting tests for floating objects
    * gobject/gobjectmodule.c, gobject/pygobject.c: Fall back to
    g_object_ref_sink
      or g_object_ref if there isn't a sinkfunc defined. Make sure that
      pygobject_sink gets called only once per GObject instance.

    https://bugzilla.gnome.org/show_bug.cgi?id=583909

 gobject/gobjectmodule.c  |    2 -
 gobject/pygobject.c	  |   50 +++++++++++++--------
 gobject/pygobject.h	  |    1 +
 tests/Makefile.am	  |    2 +
 tests/test-floating.c	  |   95 ++++++++++++++++++++++++++++++++++++++++
 tests/test-floating.h	  |   60 +++++++++++++++++++++++++
 tests/test_gobject.py	  |   19 ++++++++-
 tests/testhelpermodule.c |  109
 ++++++++++++++++++++++++++++++++++++++++++++++
 8 files changed, 315 insertions(+), 23 deletions(-)

commit e71238a699ae783fd1a59c8a76e3555d8066cf82
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon Jun 21 13:06:13 2010 +0200

    Revert "Drop sinkfuncs."

    This reverts commit 04627488220b4f2a16e11f8982af7866fea9f7eb.

 gobject/gobjectmodule.c |    3 ++-
 gobject/pygobject.c	 |   42 ++++++++++++++++++++++++++++++++++--------
 gobject/pygobject.h	 |    1 -
 3 files changed, 36 insertions(+), 10 deletions(-)

commit b2661054d6bde673484eab472e69ca021124528d
Author: Johan Dahlin <johan@gnome.org>
Date:	Sun Jun 20 11:09:57 2010 -0300

    Merge back pygi

    For reasons outlined at:
    http://mail.gnome.org/archives/python-hackers-list/2010-June/msg00009.html

 Makefile.am					    |	14 +-
 configure.ac					    |	29 +-
 demos/gtk-demo/demos/appwindow.py		    |  411 +++++
 demos/gtk-demo/demos/assistant.py		    |  134 ++
 demos/gtk-demo/demos/builder.py		    |	57 +
 demos/gtk-demo/demos/button_box.py		    |  121 ++
 demos/gtk-demo/demos/clipboard.py		    |  238 +++
 demos/gtk-demo/demos/colorselector.py		    |  121 ++
 demos/gtk-demo/demos/combobox.py		    |  282 ++++
 demos/gtk-demo/demos/data/alphatest.png	    |  Bin 0 ->
 26529 bytes
 demos/gtk-demo/demos/data/apple-red.png	    |  Bin 0 -> 3545 bytes
 demos/gtk-demo/demos/data/background.jpg	    |  Bin 0 ->
 22219 bytes
 demos/gtk-demo/demos/data/demo.ui		    |  258 ++++
 demos/gtk-demo/demos/data/floppybuddy.gif	    |  Bin 0 -> 5216 bytes
 demos/gtk-demo/demos/data/gnome-applets.png	    |  Bin 0 -> 3090 bytes
 demos/gtk-demo/demos/data/gnome-calendar.png	    |  Bin 0 -> 2755 bytes
 demos/gtk-demo/demos/data/gnome-foot.png	    |  Bin 0 -> 2916 bytes
 demos/gtk-demo/demos/data/gnome-fs-directory.png   |  Bin 0 -> 2044 bytes
 demos/gtk-demo/demos/data/gnome-fs-regular.png     |  Bin 0 -> 1795 bytes
 demos/gtk-demo/demos/data/gnome-gimp.png	    |  Bin 0 -> 3410 bytes
 demos/gtk-demo/demos/data/gnome-gmush.png	    |  Bin 0 -> 3244 bytes
 demos/gtk-demo/demos/data/gnome-gsame.png	    |  Bin 0 -> 4263 bytes
 demos/gtk-demo/demos/data/gnu-keys.png		    |  Bin 0 -> 3852 bytes
 demos/gtk-demo/demos/data/gtk-logo-rgb.gif	    |  Bin 0 -> 6427 bytes
 demos/gtk-demo/demos/test.py			    |	14 +
 demos/gtk-demo/gtk-demo.py			    |  266 ++++
 examples/Makefile.am				    |	 2 +-
 examples/cairo-demo.py				    |  121 ++
 gi/Makefile.am					    |	 4 +-
 gi/demos/gtk-demo/demos/appwindow.py		    |  411 -----
 gi/demos/gtk-demo/demos/assistant.py		    |  134 --
 gi/demos/gtk-demo/demos/builder.py		    |	57 -
 gi/demos/gtk-demo/demos/button_box.py		    |  121 --
 gi/demos/gtk-demo/demos/clipboard.py		    |  238 ---
 gi/demos/gtk-demo/demos/colorselector.py	    |  121 --
 gi/demos/gtk-demo/demos/combobox.py		    |  282 ----
 gi/demos/gtk-demo/demos/data/alphatest.png	    |  Bin 26529 ->
 0 bytes
 gi/demos/gtk-demo/demos/data/apple-red.png	    |  Bin 3545 -> 0 bytes
 gi/demos/gtk-demo/demos/data/background.jpg	    |  Bin 22219 ->
 0 bytes
 gi/demos/gtk-demo/demos/data/demo.ui		    |  258 ----
 gi/demos/gtk-demo/demos/data/floppybuddy.gif	    |  Bin 5216 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-applets.png     |  Bin 3090 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-calendar.png    |  Bin 2755 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-foot.png	    |  Bin 2916 -> 0 bytes
 .../gtk-demo/demos/data/gnome-fs-directory.png     |  Bin 2044 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-fs-regular.png  |  Bin 1795 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-gimp.png	    |  Bin 3410 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-gmush.png	    |  Bin 3244 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnome-gsame.png	    |  Bin 4263 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gnu-keys.png	    |  Bin 3852 -> 0 bytes
 gi/demos/gtk-demo/demos/data/gtk-logo-rgb.gif	    |  Bin 6427 -> 0 bytes
 gi/demos/gtk-demo/demos/test.py		    |	14 -
 gi/demos/gtk-demo/gtk-demo.py			    |  266 ----
 gi/examples/Makefile.am			    |	 2 -
 gi/examples/cairo-demo.py			    |  121 --
 gi/tests/test_everything.py			    |  270 ----
 gi/tests/test_gi.py				    | 1624
 --------------------
 gi/tests/test_overrides.py			    |  132 --
 pygi-Makefile.am				    |	28 -
 pygi-configure.ac				    |	60 -
 pygi.doap					    |	34 -
 pygobject.doap					    |	16 +-
 tests/Makefile.am				    |	23 +-
 tests/test_everything.py			    |  270 ++++
 tests/test_gi.py				    | 1624
 ++++++++++++++++++++
 tests/test_overrides.py			    |  132 ++
 66 files changed, 4124 insertions(+), 4186 deletions(-)

commit 597bd64319d7966045b5b8613ca6fc85668c3f56
Merge: ec8d148 fa91dfd
Author: Johan Dahlin <johan@gnome.org>
Date:	Sun Jun 20 10:53:46 2010 -0300

    Merge branch 'pygi-merge'

commit fa91dfd3ec79ecd03c9fb59b9363eab4a5b3ff2b
Author: Johan Dahlin <johan@gnome.org>
Date:	Sun Jun 20 10:53:36 2010 -0300

    Prepare pygi move

 .gitignore					    |	40 -
 HACKING					    |	26 -
 Makefile.am					    |	28 -
 autogen.sh					    |  166 --
 configure.ac					    |	60 -
 demos/gtk-demo/demos/appwindow.py		    |  411 -----
 demos/gtk-demo/demos/assistant.py		    |  134 --
 demos/gtk-demo/demos/builder.py		    |	57 -
 demos/gtk-demo/demos/button_box.py		    |  121 --
 demos/gtk-demo/demos/clipboard.py		    |  238 ---
 demos/gtk-demo/demos/colorselector.py		    |  121 --
 demos/gtk-demo/demos/combobox.py		    |  282 ----
 demos/gtk-demo/demos/data/alphatest.png	    |  Bin 26529 ->
 0 bytes
 demos/gtk-demo/demos/data/apple-red.png	    |  Bin 3545 -> 0 bytes
 demos/gtk-demo/demos/data/background.jpg	    |  Bin 22219 ->
 0 bytes
 demos/gtk-demo/demos/data/demo.ui		    |  258 ----
 demos/gtk-demo/demos/data/floppybuddy.gif	    |  Bin 5216 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-applets.png	    |  Bin 3090 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-calendar.png	    |  Bin 2755 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-foot.png	    |  Bin 2916 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-fs-directory.png   |  Bin 2044 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-fs-regular.png     |  Bin 1795 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-gimp.png	    |  Bin 3410 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-gmush.png	    |  Bin 3244 -> 0 bytes
 demos/gtk-demo/demos/data/gnome-gsame.png	    |  Bin 4263 -> 0 bytes
 demos/gtk-demo/demos/data/gnu-keys.png		    |  Bin 3852 -> 0 bytes
 demos/gtk-demo/demos/data/gtk-logo-rgb.gif	    |  Bin 6427 -> 0 bytes
 demos/gtk-demo/demos/test.py			    |	14 -
 demos/gtk-demo/gtk-demo.py			    |  266 ----
 examples/Makefile.am				    |	 2 -
 examples/cairo-demo.py				    |  121 --
 gi/.gitignore					    |	40 +
 gi/HACKING					    |	26 +
 gi/demos/gtk-demo/demos/appwindow.py		    |  411 +++++
 gi/demos/gtk-demo/demos/assistant.py		    |  134 ++
 gi/demos/gtk-demo/demos/builder.py		    |	57 +
 gi/demos/gtk-demo/demos/button_box.py		    |  121 ++
 gi/demos/gtk-demo/demos/clipboard.py		    |  238 +++
 gi/demos/gtk-demo/demos/colorselector.py	    |  121 ++
 gi/demos/gtk-demo/demos/combobox.py		    |  282 ++++
 gi/demos/gtk-demo/demos/data/alphatest.png	    |  Bin 0 ->
 26529 bytes
 gi/demos/gtk-demo/demos/data/apple-red.png	    |  Bin 0 -> 3545 bytes
 gi/demos/gtk-demo/demos/data/background.jpg	    |  Bin 0 ->
 22219 bytes
 gi/demos/gtk-demo/demos/data/demo.ui		    |  258 ++++
 gi/demos/gtk-demo/demos/data/floppybuddy.gif	    |  Bin 0 -> 5216 bytes
 gi/demos/gtk-demo/demos/data/gnome-applets.png     |  Bin 0 -> 3090 bytes
 gi/demos/gtk-demo/demos/data/gnome-calendar.png    |  Bin 0 -> 2755 bytes
 gi/demos/gtk-demo/demos/data/gnome-foot.png	    |  Bin 0 -> 2916 bytes
 .../gtk-demo/demos/data/gnome-fs-directory.png     |  Bin 0 -> 2044 bytes
 gi/demos/gtk-demo/demos/data/gnome-fs-regular.png  |  Bin 0 -> 1795 bytes
 gi/demos/gtk-demo/demos/data/gnome-gimp.png	    |  Bin 0 -> 3410 bytes
 gi/demos/gtk-demo/demos/data/gnome-gmush.png	    |  Bin 0 -> 3244 bytes
 gi/demos/gtk-demo/demos/data/gnome-gsame.png	    |  Bin 0 -> 4263 bytes
 gi/demos/gtk-demo/demos/data/gnu-keys.png	    |  Bin 0 -> 3852 bytes
 gi/demos/gtk-demo/demos/data/gtk-logo-rgb.gif	    |  Bin 0 -> 6427 bytes
 gi/demos/gtk-demo/demos/test.py		    |	14 +
 gi/demos/gtk-demo/gtk-demo.py			    |  266 ++++
 gi/examples/Makefile.am			    |	 2 +
 gi/examples/cairo-demo.py			    |  121 ++
 gi/tests/Makefile.am				    |	22 +
 gi/tests/runtests.py				    |	21 +
 gi/tests/test_everything.py			    |  270 ++++
 gi/tests/test_gi.py				    | 1624
 ++++++++++++++++++++
 gi/tests/test_overrides.py			    |  132 ++
 pygi-Makefile.am				    |	28 +
 pygi-configure.ac				    |	60 +
 tests/Makefile.am				    |	22 -
 tests/runtests.py				    |	21 -
 tests/test_everything.py			    |  270 ----
 tests/test_gi.py				    | 1624
 --------------------
 tests/test_overrides.py			    |  132 --
 71 files changed, 4248 insertions(+), 4414 deletions(-)

commit ec8d148eccbb3714093f21b595ea77ae4c7c3bce
Author: Johan Dahlin <johan@gnome.org>
Date:	Sun Jun 20 10:49:55 2010 -0300

    [giounix] Make it possible to compile on glib 2.20

 gio/unix.override |	2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 606018a2c551d890fc2bb987d99683f777598bda
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 7 16:32:29 2010 -0400

    Don't free transfer full struct pointers because we can't do it safely

    * Most libraries which are sending back structs as transfer-full
      are either annotated incorrectly or should be sending boxed types
    * It is much better to throw a warning and leak memory than it is to
      call free on an unknown struct pointer.  Doing so may cause
      a double free
    * Specific case is gdk_atom_intern where a GdkAtom is not actually
    a pointer
      but an integer stuffed into a pointer type

    https://bugzilla.gnome.org/show_bug.cgi?id=620898

 gi/pygi-argument.c |	 9 ++++++++-
 gi/pygi-invoke.c   |	11 +++++++++--
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 433ee2aa029a1482961f478252a06492bd3498e6
Author: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Date:	Tue Jun 15 11:42:28 2010 +0200

    Release the lock when potentially invoking Python code.

    * gobject/pygobject.c: Release GIL lock when retrieving properties
    and when clearing a PyGObject.

    https://bugzilla.gnome.org/show_bug.cgi?id=530935

 gobject/pygobject.c |	 11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

commit aa1e82c7eb87620bd73e1edb486f5b9e0d49aa96
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 14 18:36:57 2010 -0400

    add combobox example

 demos/gtk-demo/demos/combobox.py |  282
 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 282 insertions(+), 0 deletions(-)

commit a8668694da59c2dd959c875f13337e64ca22f7e9
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 14 13:43:53 2010 -0400

    fix leak in the allow None callbacks patch

 gi/pygi-callbacks.c |	  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 729072e73d65e7fd5b5197ebe5a8c53a449d0ec0
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 7 17:12:09 2010 -0400

    Allow passing None for callbacks which are annotated allow-none

    * Many callbacks are optional parameters yet we were asserting on
      Py_None
    * We now check to see if allow_none is set when setting up callbacks,
      if it is set and py_function == Py_None, we set the closure to NULL
      and return
    * pygi-invoke.c now checks to see if the closure == NULL when setting
      arguments
    * if it is NULL there is no reason to set the the destroy notify
    handler
      so we skip that too

    https://bugzilla.gnome.org/show_bug.cgi?id=620906

 gi/pygi-callbacks.c	  |    7 +++++++
 gi/pygi-invoke.c	  |   14 +++++++++++---
 tests/test_everything.py |    4 ++++
 3 files changed, 22 insertions(+), 3 deletions(-)

commit a3eb5c7de5836c37aa7ae01dbe98996ec2632c17
Author: Paolo Borelli <pborelli@gnome.org>
Date:	Mon Jun 14 19:06:45 2010 +0200

    Fix to match latest gtk annotations

 demos/gtk-demo/demos/appwindow.py |	3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

commit 6306dd73cc74aa9202569eac0eaaa5f825c8dc59
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 8 15:03:49 2010 -0400

    fix variable member names in Gdk.Color override

    * override was using r, g, and b for the red, green, blue components
    but
      the struct specifies red, green, blue so we need to use those names

    https://bugzilla.gnome.org/show_bug.cgi?id=621007

 gi/overrides/Gdk.py	 |   10 +++++-----
 tests/test_overrides.py |    6 +++---
 2 files changed, 8 insertions(+), 8 deletions(-)

commit d182630e1128fef6f1c2aea28ccd8da4bddd2c8f
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Thu Jun 10 20:23:13 2010 +0200

    Post release version bump to 2.21.3

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit c4e64d5d264593051b9a3131e4985a58e8e76f8b
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Thu Jun 10 20:21:13 2010 +0200

    Update NEWS and release PyGObject-2.21.2

 NEWS |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

commit e0fe844d5fe8f7e26316f197444fd4143ed36adf
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Thu Jun 10 20:09:07 2010 +0200

    Remove deleted files from the Makefile.

	   test_conversion.py
	   test_enum.py
	   test_gtype.py
	   test_subtype.py

 tests/Makefile.am |	4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

commit 495a301cb81c5e914bcef905999265604faa27fc
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Thu Jun 10 19:39:09 2010 +0200

    Add myself to the maintainers list in the README

 README |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 04627488220b4f2a16e11f8982af7866fea9f7eb
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Thu Jun 10 19:24:31 2010 +0200

    Drop sinkfuncs.

	* use g_object methods to sink floating refs instead of allowing
	  custom sink functions to be registered
	* we now sink inside of pygobject_new_full to handle cases where
	  a library creates its own gobject via g_object_new and just
	  needs a python wrapper
	  - a previous patch had done the sink when creating the gobject,
	    since it needs to call pygobject_new_full to wrap the object,
	    this patch handles both cases (e.g. pygobject created object
	    and externally created gobject)

    https://bugzilla.gnome.org/show_bug.cgi?id=583909

 gobject/gobjectmodule.c |    3 +--
 gobject/pygobject.c	 |   42 ++++++++----------------------------------
 gobject/pygobject.h	 |    1 +
 3 files changed, 10 insertions(+), 36 deletions(-)

commit 07df124dc06cf506634e95d08397f50a2d07fce2
Author: Steve Frécinaux <code@istique.net>
Date:	Mon Jun 7 09:47:23 2010 +0200

    Make the "wrong argument count" exception more explicit.

    Previously we had messages like this one:
    TypeError: takes exactly 2 argument(s) (1 given)

    With this patch, they become like this:
    TypeError: get_end_iter() takes exactly 2 argument(s) (1 given)

    It makes things much easier to debug when there are several pygi calls
    on the same line.

    https://bugzilla.gnome.org/show_bug.cgi?id=620804

 gi/pygi-invoke.c	  |    3 ++-
 tests/test_everything.py |    6 ++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

commit b435319fe830a909cc4d414533b3b66574931e24
Author: Steve Frécinaux <code@istique.net>
Date:	Mon Jun 7 09:54:06 2010 +0200

    Use bash explicitely in the pre-commit hook.

    The "builtin" command is not available in all sh flavours, so the
    pre-commit hook is going to fail if you use dash or others instead of
    bash as your default 'sh' alias.

    https://bugzilla.gnome.org/show_bug.cgi?id=620805

 pre-commit.hook |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e9ee2916494eb7654004925c1ee1e94f99b14f1a
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Jun 8 16:55:26 2010 -0400

    colorselector demo

 demos/gtk-demo/demos/colorselector.py |  121
 +++++++++++++++++++++++++++++++++
 1 files changed, 121 insertions(+), 0 deletions(-)

commit ec598128de9e90dccab662ed2f5511c8d659e156
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Tue Jun 8 15:48:33 2010 +0200

    Update PyGObject dependency to 2.21.1

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 87774a17bd607724a56e18c2eb1ac71b04b7079d
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Tue Jun 8 10:40:39 2010 +0200

    Add myself to maintainers

 MAINTAINERS	|    4 ++++
 pygobject.doap |    7 +++++++
 2 files changed, 11 insertions(+), 0 deletions(-)

commit 46c91a11d448e5e11d142d3362aff1483226bca4
Author: Colin Walters <walters@verbum.org>
Date:	Wed May 5 13:54:27 2010 -0400

    Clear error if we failed the import

    Otherwise we leave the exception set which causes bizarre problems
    later in unrelated code.

    https://bugzilla.redhat.com/show_bug.cgi?id=569885

    https://bugzilla.gnome.org/show_bug.cgi?id=617796

 gobject/pygi-external.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit c1c41576d053cc1cdd8366d8cd1e59fff1c3a9c6
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 7 17:19:30 2010 -0400

    fix some typos and add a link to a patch which fixes a FIXME

 demos/gtk-demo/demos/clipboard.py |	7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

commit e7fabb5024d94a3166766e5fca740741bc50380a
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon Jun 7 16:21:42 2010 -0400

    clipboard demo

 demos/gtk-demo/demos/clipboard.py |  235
 +++++++++++++++++++++++++++++++++++++
 1 files changed, 235 insertions(+), 0 deletions(-)

commit e0f1dce5ec58d071759f886697501da6eeea549d
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sun Jun 6 13:27:46 2010 -0400

    set is_fully_bound to false

 demos/gtk-demo/demos/button_box.py |	 2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 986db1c73746d3a8ad7d8d5141c7eed194e7b948
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat Jun 5 23:53:36 2010 -0400

    new button box demo

 demos/gtk-demo/demos/button_box.py |  121
 ++++++++++++++++++++++++++++++++++++
 1 files changed, 121 insertions(+), 0 deletions(-)

commit e9f5f8a829121e59367bae690442150f144946ad
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat Jun 5 23:26:03 2010 -0400

    set is_fully_bound to True fro builder example

 demos/gtk-demo/demos/builder.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit d9968c3a4dea1d4a73a9376009cf486c80ea3da6
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat Jun 5 23:24:36 2010 -0400

    fix up formatting in demos

 demos/gtk-demo/demos/appwindow.py |   16 ++++++++--------
 demos/gtk-demo/demos/assistant.py |   24 ++++++++++++------------
 demos/gtk-demo/demos/builder.py   |	2 +-
 3 files changed, 21 insertions(+), 21 deletions(-)

commit ffca02536bafb55e8c3bce31cd992365207429f6
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat Jun 5 14:54:47 2010 -0400

    add the builder demo

 demos/gtk-demo/demos/builder.py |   57
 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 57 insertions(+), 0 deletions(-)

commit a96dbafdf562a2ac6bde4df27919d3628689dbdb
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri Jun 4 17:48:24 2010 -0400

    add assistant demo

 demos/gtk-demo/demos/assistant.py |  134
 +++++++++++++++++++++++++++++++++++++
 1 files changed, 134 insertions(+), 0 deletions(-)

commit 7e1b8cf32f33d45603aaec76afb0d14be84ffd94
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri Jun 4 16:56:46 2010 -0400

    add formatting rules and copyright notice

 demos/gtk-demo/demos/appwindow.py |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

commit 03b99692b81631d397ab62dcd263341465bcee88
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri Jun 4 16:26:54 2010 -0400

    add the gtk-demo app along with a couple of demos

    * note there are still a couple of patches in bugzilla that are
    needed for this
      to run correctly:
	- http://bugzilla-attachments.gnome.org/attachment.cgi?id=162682
	- http://bugzilla-attachments.gnome.org/attachment.cgi?id=162764

 demos/gtk-demo/demos/appwindow.py		  |  393
 ++++++++++++++++++++++
 demos/gtk-demo/demos/data/alphatest.png	  |  Bin 0 -> 26529 bytes
 demos/gtk-demo/demos/data/apple-red.png	  |  Bin 0 -> 3545 bytes
 demos/gtk-demo/demos/data/background.jpg	  |  Bin 0 -> 22219 bytes
 demos/gtk-demo/demos/data/demo.ui		  |  258 ++++++++++++++
 demos/gtk-demo/demos/data/floppybuddy.gif	  |  Bin 0 -> 5216 bytes
 demos/gtk-demo/demos/data/gnome-applets.png	  |  Bin 0 -> 3090 bytes
 demos/gtk-demo/demos/data/gnome-calendar.png	  |  Bin 0 -> 2755 bytes
 demos/gtk-demo/demos/data/gnome-foot.png	  |  Bin 0 -> 2916 bytes
 demos/gtk-demo/demos/data/gnome-fs-directory.png |  Bin 0 -> 2044 bytes
 demos/gtk-demo/demos/data/gnome-fs-regular.png   |  Bin 0 -> 1795 bytes
 demos/gtk-demo/demos/data/gnome-gimp.png	  |  Bin 0 -> 3410 bytes
 demos/gtk-demo/demos/data/gnome-gmush.png	  |  Bin 0 -> 3244 bytes
 demos/gtk-demo/demos/data/gnome-gsame.png	  |  Bin 0 -> 4263 bytes
 demos/gtk-demo/demos/data/gnu-keys.png		  |  Bin 0 -> 3852 bytes
 demos/gtk-demo/demos/data/gtk-logo-rgb.gif	  |  Bin 0 -> 6427 bytes
 demos/gtk-demo/demos/test.py			  |   14 +
 demos/gtk-demo/gtk-demo.py			  |  266 +++++++++++++++
 18 files changed, 931 insertions(+), 0 deletions(-)

commit b3b1f029d8d16cf9bd74160009808147d07e3b3f
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Fri Jun 4 11:25:08 2010 +0200

    Update gobject-introspection dependency to 0.6.14

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 45c4e46ae93bd83a0e3f3550df6c64ce96bbedb4
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Fri Jun 4 11:23:41 2010 +0200

    Post-release version bump to 0.6.1

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 7a94270dac48b67aabc7dbad156cf1180db9cb5e
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Fri Jun 4 08:29:42 2010 +0200

    Pre-release version bump 0.6.0

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 1e42ee6eb25a07a5201f24ffeac18d298a98477e
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri May 28 10:03:11 2010 -0400

    support for caller-allocates annotations for structs

    * out caller-allocates parameters expect an already constructed
    structure
      to be passed in by reference.  It is then modified and the caller
      uses the
      modified value.  We support this by using only one level of pointer
      indirection.
    * Only structs are considered to be caller-allocates parameters
    even if
      they are marked as such by GI.  This is because the GI scanner
      isn't smart
      enough to correctly guess 100% of the time
    * GValues are a special case of a caller-allocates parameter when
    cleaning
      up (e.g. g_value_unset is called).  GValues make no sense in
      a scripting
      language.  Developers should never deal with them.

    https://bugzilla.gnome.org/show_bug.cgi?id=620406

 gi/pygi-invoke.c	  |   73
 +++++++++++++++++++++++++++++++++++++++++++--
 tests/test_everything.py |   28 +++++++++++++++++
 2 files changed, 97 insertions(+), 4 deletions(-)

commit c3f467e0ae99aa78c2fdb91b973a272d2fe970bd
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed Jun 2 14:14:16 2010 -0400

    don't import gobject directly in the tests

    * use from gi.repository import GObject

 tests/test_overrides.py |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

commit 46b5133fea4cd5db57a360b3cbe9ee923e27560c
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Tue Jun 1 14:28:57 2010 +0200

    Wrap C arrays in structs as GArrays before converting to Python

    https://bugzilla.gnome.org/show_bug.cgi?id=620247

 gi/pygi-info.c   |   11 +++++++++++
 tests/test_gi.py |   17 +++++++++++++++++
 2 files changed, 28 insertions(+), 0 deletions(-)

commit 5f0f9a9c9145a129a063b041424c3109a24d9ead
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed May 26 13:20:27 2010 +0200

    Install pre-commit hook that checks the code changes for style
    conformance

 autogen.sh	 |    7 +++++++
 pre-commit.hook |   39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+), 0 deletions(-)

commit 1319da5b7f483e48a90b0b7489f77236ba26f479
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Wed May 26 12:19:17 2010 +0200

    Apply consistent whitespace formatting with:

    astyle -p -d -c -S -U -M60

    This won't affect git blame nor git diff if the switch -w is used.

 gi/gimodule.c		 |  138 ++++----
 gi/pygi-argument.c	 |  960
 +++++++++++++++++++++++-----------------------
 gi/pygi-boxed.c	 |  108 +++---
 gi/pygi-callbacks.c	 |  154 ++++----
 gi/pygi-callbacks.h	 |    8 +-
 gi/pygi-closure.c	 |  270 +++++++-------
 gi/pygi-closure.h	 |   18 +-
 gi/pygi-foreign-cairo.c |   36 +-
 gi/pygi-foreign-cairo.h |   36 +-
 gi/pygi-foreign.c	 |   54 ++--
 gi/pygi-foreign.h	 |   10 +-
 gi/pygi-info.c		 |  646 ++++++++++++++++----------------
 gi/pygi-invoke.c	 |  380 ++++++++++----------
 gi/pygi-repository.c	 |  114 +++---
 gi/pygi-struct.c	 |   88 +++---
 gi/pygi-type.c		 |   32 +-
 gi/pygi.h		 |   20 +-
 gi/pygobject-external.h |   14 +-
 18 files changed, 1544 insertions(+), 1542 deletions(-)

commit 6156f15cb15b4c20e975527227135d49207c520a
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Tue May 25 14:08:51 2010 +0200

    Prepend gi.repository to the __module__ attribute of wrapper classes.

    https://bugzilla.gnome.org/show_bug.cgi?id=619597

 gi/module.py	  |    4 ++--
 tests/test_gi.py |    4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 097b92983b7a322c58fecb1e691ba6ddf5035548
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Tue May 25 14:17:13 2010 +0200

    Correctly identify at creation time:

    * if the class is defined in python -> hook up vfuncs
    * if the class wraps a type from a .typelib -> set atributes
    * else (GLocalFile) -> do nothing

    https://bugzilla.gnome.org/show_bug.cgi?id=619604

 gi/types.py |	 15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

commit 686e10fcdb108af9758eb025a3447813c3513a93
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 29 10:55:13 2010 +0200

    Dont complain if another base has implemented the method

    https://bugzilla.gnome.org/show_bug.cgi?id=617153

 gi/types.py |	  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 9f34d120845d936b04546a5cea599ec67e9181a7
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon May 24 16:16:50 2010 -0400

    fix up Builder override, add new override methods, and add unit tests

    * check for flags when connecting signals now that we get gi
    GObject types
    * override the add_from_string and add_objects_from string overrides
    so
      that you don't have to pass in the length of the buffer
    * add test that loads objects from strings and connects them to
    signals

 gi/overrides/Gtk.py	 |   19 +++++++++++-
 tests/test_overrides.py |   72
 +++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 86 insertions(+), 5 deletions(-)

commit 1561d2977691f1cb8684f183a2e274c47960d931
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Mon May 24 18:48:10 2010 +0200

    Improve handling of subclasses without __gtype_name__

    Gives a better message at type registration.

    https://bugzilla.gnome.org/show_bug.cgi?id=616849

 gi/gimodule.c	  |    9 +++++++++
 tests/test_gi.py |   13 ++++++++++++-
 2 files changed, 21 insertions(+), 1 deletions(-)

commit c9d44d4d46c3da3a445000b1db592baa9c378a92
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Apr 30 18:17:50 2010 +0200

    Add support for GArray args

    https://bugzilla.gnome.org/show_bug.cgi?id=617054

 gi/pygi-invoke.c |   11 +++++++----
 tests/test_gi.py |   50
 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+), 4 deletions(-)

commit c171579ee22681e1ee4ad33441c89f1053bdc3d1
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon May 24 11:48:16 2010 -0400

    check refcounting of callback userdata in unit tests

 tests/test_everything.py |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

commit 8eb809468fe3e1f8e4f92bd7f25d96f9cf802cd4
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Sat May 22 15:12:37 2010 +0200

    Add support for out args in callbacks

    This patch refactors argument marshalling for closures in
    preparation for more complete support.

    Also fixes a bug in the memory management of user_data args.

    https://bugzilla.gnome.org/show_bug.cgi?id=617780

 gi/pygi-closure.c |  335
 +++++++++++++++++++++++++++++++++++++++++------------
 tests/test_gi.py  |	4 +
 2 files changed, 263 insertions(+), 76 deletions(-)

commit 0df0c956bb2476392c9d81f0a243a7e84c067166
Author: Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>
Date:	Sun May 23 10:59:27 2010 +0200

    If None is passed to an interface which takes an object, convert it to
    NULL

     * without this patch PyGI treats the None object as a PyGObject
     and ends up
    extracting garbage data causing a crash
     * None's equivalent in C is NULL so we must provide a special case
     where we
    marshal the None as NULL

    https://bugzilla.gnome.org/show_bug.cgi?id=617880

 gi/pygi-argument.c	  |    5 +++++
 tests/test_everything.py |    6 ++++++
 2 files changed, 11 insertions(+), 0 deletions(-)

commit 60fdf4b8f738dd0f5c190bc18ddf010032d3c5ca
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat May 22 14:06:37 2010 +0200

    correctly handle floating objects in gtk

    * this is a stopgap so we work with older pygobject libraries
    * there is a patch at
    https://bugzilla.gnome.org/show_bug.cgi?id=583909
      which adds the correct fix to pygobject
    * once pygobject accepts the above patch this patch does not need to
      be reverted because pygobject_register_sinkfunc becomes a noop
    * add tests (Tomeu)

    https://bugzilla.gnome.org/show_bug.cgi?id=619007

 gi/gimodule.c		  |   12 ++++++++++++
 tests/test_everything.py |    3 +++
 2 files changed, 15 insertions(+), 0 deletions(-)

commit 4b369f8aca980fc6a582094d6648f40fe4af5e9f
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat May 22 13:21:30 2010 +0200

    Return an empty list when a NULL GList and GSList is returned

    * In GTK a GList * and GSList set to NULL is equivilant to empty
    list. All
      GTK list methods can take a NULL and treat it as an empty list. e.g.
      g_list_length(NULL) returns 0
    * PyGtk consitently returns empty list when a NULL is returned for
    GList or
      GSList return
    * Many PyGtk apps do this:
	for i in range(len(obj.get_list())):
	    ...
    * If we were to continue to return None, they would have to add
    a check
      which is needlessly verbose and isn't very "pythonic"

    https://bugzilla.gnome.org/show_bug.cgi?id=619232

 gi/pygi-argument.c	  |    6 ------
 tests/test_everything.py |    4 ++--
 2 files changed, 2 insertions(+), 8 deletions(-)

commit 71a2148b00dfdda99e0d961ae39b901608724e59
Author: Steve Frécinaux <code@istique.net>
Date:	Fri May 21 19:05:03 2010 +0200

    Fix warning in configure.

    The warning is caused by the use of the construction 'CFLAGS+=' in a
    sh version that doesn't understand it (in this case, 'dash').

    https://bugzilla.gnome.org/show_bug.cgi?id=619311

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit aa0357e468eb91e0f3707346e9b32f312fbf51d3
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 29 13:06:15 2010 +0200

    GTypeInterface cannot be unrefed

    https://bugzilla.gnome.org/show_bug.cgi?id=617159

 gi/gimodule.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit ab1aaff108d23aabd28c3634edfb67236eb55460
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Sat May 22 13:09:48 2010 +0200

    fix NULL array unit tests and fix crasher when sending None as
    an array

    * Unit tests were wrong given the annotation for
    test_array_int_null_in and
      test_array_int_null_out:

      /**
       * test_array_int_null_in:
       * @arr: (array length=len) (allow-none):
       * @len: length
       */

     -- and --

      /**
       * test_array_int_null_out:
       * @arr: (out) (array length=len) (allow-none):
       * @len: (out) : length
       */

      The (array length=len) annotation meant we don't pass in or
      receive the len argument as this is handled under the hood
      (Python's representation of an array, the list type, encapsulates
       the length inside the type)

    * Fixing up the tests revealed a latent crasher bug when passing
    None to an
      interface that accepts an array.	The fix was to check for NULL
      and set
      the length argument to 0 when invoking the bound method.

    https://bugzilla.gnome.org/show_bug.cgi?id=619235

 gi/pygi-invoke.c	  |    6 +++++-
 tests/test_everything.py |    4 ++--
 2 files changed, 7 insertions(+), 3 deletions(-)

commit e928ea9b1df9d87314ff8e93479530e26be9bd87
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri May 14 14:57:27 2010 -0400

    don't error out on methods with callbacks as return type

    * Right now we just throw an error which means API's like
      gtk_about_dialog_set_url_hook aren't able to be called,
    * this allows us to call such APIs while printing a warning, in
    most cases
      API such as this doesn't need to be used anymore and is a result of
      early GTK development

 gi/pygi-argument.c |	14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

commit d963007aab123f4e53a944a66a935db2d22907c2
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Mon May 17 11:54:34 2010 -0400

    reset sys.argv to the return value of Gtk.init_check

    * applications which check command line arguments will error out if it
      encounters a GTK command line switch such as --g-fatal-warnings.
    * The Gtk.init* API reads these switches and returns a new argv with
    the GTK
      switches stripped out
    * In C argv is modified in place but in Python we must set sys.argv
    to the
      new modified argument list
    * fixes https://bugzilla.gnome.org/show_bug.cgi?id=618889

 gi/overrides/Gtk.py |	  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 897420ed97cc4a7b8a806894df5e76ed72617614
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed May 12 14:25:32 2010 -0400

    add GtkUIManager and GtkActionGroup overrides

    * fixes bug https://bugzilla.gnome.org/show_bug.cgi?id=618476

 gi/overrides/Gtk.py	 |  167
 ++++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_overrides.py |   45 +++++++++++++
 2 files changed, 211 insertions(+), 1 deletions(-)

commit 865939d29c1e9d69dbe6b9cf89477b5516dbff1f
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Thu May 13 01:02:24 2010 -0400

    Bump version for development to 0.5.2 (hopefully 0.6)

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 2674a9546b0246d4a75d71cf1708df77dc0173f9
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Wed May 5 15:54:39 2010 +0200

    Fix overrides.Gdk.Color.__new__ args

    https://bugzilla.gnome.org/show_bug.cgi?id=617757

 gi/overrides/Gdk.py	 |    2 +-
 tests/Makefile.am	 |    3 ++-
 tests/test_overrides.py |   22 ++++++++++++++++++++++
 3 files changed, 25 insertions(+), 2 deletions(-)

commit c20b9f632a35bada1320ccc10fb7d5b2c06b9a88
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Thu Apr 29 14:55:33 2010 -0400

    wrap GObject module so we can go through GI when requesting attrs

    * This gives us the best of both worlds.
      - We remain backwards compatable with pygobject by checking for
      existing
	attrs in the gobject module
      - If an attr does not exist we use the GI mechanism to look it up
      so that
	things like flags look the same whether exported from GObject, Gtk
	or any GI managed library

    * add DynamicGObjectModule tests and make tests use the new module
      - change import gobject to from gi.repository import GObject

 gi/importer.py		  |    6 +-
 gi/module.py		  |   30 +++++++++++++++
 tests/test_everything.py |    6 +-
 tests/test_gi.py	  |   93
 +++++++++++++++++++++++++---------------------
 4 files changed, 87 insertions(+), 48 deletions(-)

commit 64324a4c629432b2e688299b6edbfd5da4439a2a
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Fri Apr 30 14:11:55 2010 -0400

    override Gdk.Drawable to add cairo_create convinience method

 gi/overrides/Gdk.py |	  7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

commit 17fa1289b1e2ed841dd5de09a2ec7c25d401886e
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon May 3 19:13:46 2010 +0200

    Fix passing callbacks as constructor args

    https://bugzilla.gnome.org/show_bug.cgi?id=617551

 gi/pygi-callbacks.c	  |    3 ++-
 gi/pygi-callbacks.h	  |    1 +
 gi/pygi-invoke.c	  |    7 +++++--
 tests/test_everything.py |   21 +++++++++++++++++++++
 4 files changed, 29 insertions(+), 3 deletions(-)

commit f9fff978d56ddf2c012b906169ae16abb7fdc2a5
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Wed May 5 08:06:03 2010 +0200

    Avoid freeing garbage

 gi/pygi-invoke.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

commit 5e20c018ae09a936f5ff140df5d1c133c98e98ba
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 29 13:09:03 2010 +0200

    Only hookup vfunc implementations for locally-defined methods

    https://bugzilla.gnome.org/show_bug.cgi?id=617160

 gi/types.py	  |   10 +++++++++-
 tests/test_gi.py |   10 ++++++++++
 2 files changed, 19 insertions(+), 1 deletions(-)

commit 3e61e7d4450a2bb133c7f3862e0962a35339ce8d
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon May 3 18:35:13 2010 +0200

    Fix passing GDestroyNotify

    https://bugzilla.gnome.org/show_bug.cgi?id=617542

 gi/pygi-invoke.c	  |    3 ++-
 tests/test_everything.py |   10 ++++++++++
 2 files changed, 12 insertions(+), 1 deletions(-)

commit 9669acd0fad193013ef3505ae231588307f9834c
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon May 3 12:23:58 2010 +0200

    Move invocation code to its own file

    https://bugzilla.gnome.org/show_bug.cgi?id=617107

 gi/Makefile.am    |	2 +
 gi/pygi-info.c    |  884
 ---------------------------------------------------
 gi/pygi-invoke.c  |  909
 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-invoke.h  |   37 +++
 gi/pygi-private.h |	1 +
 5 files changed, 949 insertions(+), 884 deletions(-)

commit 9b923a68dfde06fc2df6321b3f1e53f1c57b3666
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Tue Apr 27 19:13:08 2010 -0400

    Add the Gtk.Builder override

 gi/overrides/Gtk.py |	 37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

commit 9fc6783406b8263ebd67ceae2730b4e86689b43e
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Apr 30 15:00:52 2010 +0200

    Fix GAsyncReadyCallback

    https://bugzilla.gnome.org/show_bug.cgi?id=616236

 gi/pygi-closure.c	  |    8 +++++++-
 tests/test_everything.py |   16 ++++++++++++++++
 2 files changed, 23 insertions(+), 1 deletions(-)

commit 5657ccaaec09e2a3194ea2e9a923724bcc66759e
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 29 18:32:50 2010 +0200

    Add override for Gdk.Color

    https://bugzilla.gnome.org/show_bug.cgi?id=617162

 gi/overrides/Gdk.py |	 20 +++++++++++++++++++-
 1 files changed, 19 insertions(+), 1 deletions(-)

commit 4410abd589a2f64cfbd7bbcb4013fae9e4aa734f
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed Apr 28 13:19:48 2010 -0400

    make __all__ be a list of strings, fix override mechanism to use
    it correctly

    * before we were adding classes to the __all__ module property but
      the convention is to use the name of the class
    * simplified the check to just check the name against __all__
      instead of trying to get the class and then checking the class
      against None as well as in __all__
    * went through all the overrides and made __all__ be a list of strings

 gi/module.py			    |	 9 ++++-----
 gi/overrides/GIMarshallingTests.py |	 2 +-
 gi/overrides/Gdk.py		    |	 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)

commit 64fa8f936bad9a90628df446e690d67d947a0a22
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon Apr 26 11:41:06 2010 +0200

    One more step at refactoring _wrap_g_function_info_invoke

    https://bugzilla.gnome.org/show_bug.cgi?id=616357

 gi/pygi-callbacks.c |	 22 +-
 gi/pygi-callbacks.h |	  4 +-
 gi/pygi-info.c      |	582
 +++++++++++++++++++++++++++++----------------------
 3 files changed, 346 insertions(+), 262 deletions(-)

commit 7fc5528273edae5ecdd5d8bdf0e5b898eec7a624
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 23:23:38 2010 -0400

    Step 1 of refactoring _wrap_g_function_info_invoke

    Original patch by David Malcom <dmalcolm@redhat.com>

    This patch bitrots *REALLY* fast.

    https://bugzilla.gnome.org/show_bug.cgi?id=616357

 gi/pygi-info.c |  417
 +++++++++++++++++++++++++++++---------------------------
 1 files changed, 214 insertions(+), 203 deletions(-)

commit 1d9c6b6d76a3e27f66e6f0cfc7b16c5191e4fc22
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Apr 27 10:24:35 2010 +0200

    Dont force subclasses to implement all virtual methods of their bases

    https://bugzilla.gnome.org/show_bug.cgi?id=616674

 gi/types.py	  |    4 ++--
 tests/test_gi.py |   15 +++++++++++++++
 2 files changed, 17 insertions(+), 2 deletions(-)

commit 8a0c48f4dd512797e5cf132f8ec6fb6d4d1e7aaa
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sun Apr 25 15:09:08 2010 -0400

    Correct the reference counting of userdata in closure handling

    Without this we lose references on every call and eventually end up
    free'ing objects
    while they are still in use.

    https://bugzilla.gnome.org/show_bug.cgi?id=616786

 gi/pygi-closure.c	  |    3 +++
 tests/test_everything.py |   13 +++++++++++++
 2 files changed, 16 insertions(+), 0 deletions(-)

commit 2b12049306bf57513c43d08017185468bf897a4a
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 22:57:14 2010 -0400

    Change SCOPE_TYPE_INVALID handling to be a more verbose error.

    (Previous commit did not include the proper error message.	I blame
    git-bz)

    https://bugzilla.gnome.org/show_bug.cgi?id=616356

 gi/pygi-closure.c |	4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 8240320d0b67074ce91bdf7aadcf5951c5a8c45a
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 23:53:57 2010 -0400

    Force out arguments to be initialized as NULL.  Comes with a test.

    This fix was motivated by a real world library which had a transfer
    full
    utf8 out argument which sometimes was not set.  We would leave
    the pointer
    dangling and try and free it at the end of invoke() and crash.
    Library refused
    to change their behavior so we're forced to take care of it on
    our end.

    https://bugzilla.gnome.org/show_bug.cgi?id=616043

 gi/pygi-info.c   |    1 +
 tests/test_gi.py |    3 +++
 2 files changed, 4 insertions(+), 0 deletions(-)

commit 10e558ca283cdd06725bb0d24b5071ccbecc7d13
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 22:57:14 2010 -0400

    Change SCOPE_TYPE_INVALID handling to be a warning and not an error

    Be slightly nicer to library maintainers.  It really isn't a fatal
    condition
    if we don't have a proper scope type, better to leave a good code
    comment
    and a warning than to cause their code to segv.

    https://bugzilla.gnome.org/show_bug.cgi?id=616356

 gi/pygi-closure.c |	3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit d3b5fae9d609dbcd83deb0fa9102b24faf76787c
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 22:43:20 2010 -0400

    Refactor implementation of scope call to allow for multiple calls
    during lifetime of function invocation.

    https://bugzilla.gnome.org/show_bug.cgi?id=616343

 gi/pygi-closure.c	  |   10 +++++-----
 gi/pygi-info.c		  |    9 +++++++--
 tests/test_everything.py |    9 +++++++++
 3 files changed, 21 insertions(+), 7 deletions(-)

commit 3ba666b7ab9c393963922c272e7d87bff50a93f9
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Jan 2 16:31:55 2010 +0100

    Add basic support for unions

    https://bugzilla.gnome.org/show_bug.cgi?id=603598

 gi/module.py	    |	 3 +-
 gi/pygi-argument.c |	24 +++----------
 gi/pygi-boxed.c    |	18 +++++++++-
 gi/pygi-info.c     |	94
 +++++++++++++++++++++++++++++++++++++++++++++++-----
 gi/pygi-info.h     |	 1 +
 tests/test_gi.py   |	56 +++++++++++++++++++++++++++++++
 6 files changed, 165 insertions(+), 31 deletions(-)

commit af9e4e086d160fe7fb24758ed81753e784b198a8
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Jan 22 22:16:32 2010 +0100

    Bump required GLib version to 2.22

    Since PyGObject now depends on GLib 2.22.4, there is no need to
    keep PyGI
    backward-compatible.

 configure.ac	   |	2 +-
 gi/pygi-private.h |   20 --------------------
 2 files changed, 1 insertions(+), 21 deletions(-)

commit c0f40de5648e2ebc556c449342a0025ffce2e33b
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 11:50:14 2010 -0400

    Refactor get_* methods in the *Info wrappers

    https://bugzilla.gnome.org/show_bug.cgi?id=616108

 gi/pygi-info.c |  360
 ++++++++++++++++++++++++++------------------------------
 1 files changed, 168 insertions(+), 192 deletions(-)

commit 24bb89f1310dc2fc8ee6ddaf945342ebf80055cd
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Apr 20 15:12:47 2010 +0200

    Print any error messages raised inside _pygi_closure_handle

    https://bugzilla.gnome.org/show_bug.cgi?id=616279

 gi/pygi-closure.c |	9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

commit d1ba23cdd05686ea721425f233371d573a2e9cce
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 22 19:57:17 2010 +0200

    Rename variable with a very generic name

 gi/module.py |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

commit 391640b30ede50af3667b1019edb72bd79f2c68c
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 22 19:53:06 2010 +0200

    Add support for enums without GType

    https://bugzilla.gnome.org/show_bug.cgi?id=616520

 gi/module.py	    |	 6 +++++-
 gi/pygi-argument.c |	22 +++++++++++++++++++++-
 gi/types.py	    |	14 ++++++++++++++
 tests/test_gi.py   |	30 ++++++++++++++++++++++++++++--
 4 files changed, 68 insertions(+), 4 deletions(-)

commit 89704f60ddae0c81f1383d86491ef2785590a353
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Tue Apr 20 22:20:42 2010 -0400

    Bump version during development to 0.5.1

    This follows what is, according to Colin Walters,
    standard versioning practice.  During development the
    version in your config is the *next* version you will release,
    not the version after.  Thus after a release you make a new commit
    bumping to the next development version.

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e203dc7c8f524c16aa52e15758dc3a2b09fbac75
Author: John Ehresman <jpe@wingware.com>
Date:	Tue Apr 20 20:40:02 2010 -0400

    Added missing , to keyword list of gio.GFile.set_attribute

 gio/gresolver.override |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 0b222f01ac9ceea1d127083623ad532ecc75bf7e
Author: John Ehresman <jpe@wingware.com>
Date:	Tue Apr 20 20:37:12 2010 -0400

    Fix arg conversion in gio.GFile.set_attribute

 gio/gfile.override |  232
 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 227 insertions(+), 5 deletions(-)

commit a579ccc8bea90937bf970be3d461e2b650b0c7d6
Author: John Ehresman <jpe@wingware.com>
Date:	Tue Apr 20 20:01:53 2010 -0400

    Set constants under python 2.5 or before

 gobject/gobjectmodule.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

commit 11fa39a861abf679e01b5f0da97be93ae0adf0f0
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Sun Apr 18 20:22:21 2010 -0400

	Doc Extractor: Use replacements that make sense for &...;
	expressions.

	* codegen/docextract_to_xml.py: Use &#35; and &#160; respectively
	for
	&num; (#) and &nbsp;.  These are interpreted correctly in XML
	and will
	not make the parsing crash.

 codegen/docextract_to_xml.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 8dbc2cb016acef7b364804cd9bc8f0b1da37e84b
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sun Apr 18 14:32:06 2010 -0400

    Bump version for release 0.5.0

 HACKING      |    7 +++++++
 configure.ac |    4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 3293c91d90c5c497b45e42a527d7f79f7435823e
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 14:28:13 2010 -0400

    One more missing file...

 examples/Makefile.am |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 1dc575af19fe985cc3fa3ec0cf18aeab1f43c16d
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 14:18:44 2010 -0400

    Add more stuff to the tarballs

 Makefile.am  |    8 +++++++-
 configure.ac |    1 +
 2 files changed, 8 insertions(+), 1 deletions(-)

commit 8a9bb04755057e934b7f46c917af6ef281a2fedd
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 13:48:45 2010 -0400

    Add one more missing file to tarballs

 gi/overrides/Makefile.am	    |	 1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 979e01852fc7f830ee91093accdc387fa535075f
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 13:45:29 2010 -0400

    Add missing file to tarballs

 tests/Makefile.am |	1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 8b70faa7a9a32b9ea8862f28a503e38f496cfd89
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 13:11:11 2010 -0400

    Implement vfuncs.

    https://bugzilla.gnome.org/show_bug.cgi?id=602736

 gi/gimodule.c	     |	 89
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-argument.c  |	  1 +
 gi/pygi-callbacks.c |	  3 +-
 gi/pygi-closure.c   |	  4 +-
 gi/pygi-closure.h   |	  2 +-
 gi/pygi-info.c      |	 86
 ++++++++++++++++++++++++++++++++++++++++++++++++-
 gi/pygi-info.h      |	  1 +
 gi/types.py	     |	 44 +++++++++++++++++--------
 tests/test_gi.py    |	 18 ++++++++++
 9 files changed, 227 insertions(+), 21 deletions(-)

commit e239faacb4798fe2d166233ca1a19a843a6225e3
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sun Apr 18 11:59:06 2010 -0400

    Fix a typo in pygi-callbacks.c header

 gi/pygi-callbacks.c |	  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 79aa416ae8632b123da61d79fb820d9e2704209c
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sat Apr 17 12:00:05 2010 -0400

    Implement nullable argument support, including tests

    https://bugzilla.gnome.org/show_bug.cgi?id=616035

 gi/pygi-argument.c	  |   43
 +++++++++++++++++++++++++++++++++++++------
 gi/pygi-argument.h	  |    3 ++-
 gi/pygi-info.c		  |   19 +++++++++++++------
 tests/test_everything.py |   28 ++++++++++++++++++++++++++++
 4 files changed, 80 insertions(+), 13 deletions(-)

commit 7d533b8893bc4a8a82fd9708278fa1dce5d3551e
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sat Apr 17 12:56:19 2010 -0400

    Move some tests from test_gi to test_everything

 tests/test_everything.py |   60
 ++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gi.py	  |   62
 +---------------------------------------------
 2 files changed, 61 insertions(+), 61 deletions(-)

commit a90298cc9e6c0f336f887a71d80b1efd07ec2811
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Apr 18 10:44:35 2010 -0400

    Update to latest version of the pygi-convert.sh script

 pygi-convert.sh |  193
 +++++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 137 insertions(+), 56 deletions(-)

commit 34a39318c674737c6d64f2430456daef86ba1626
Author: Colin Walters <walters@verbum.org>
Date:	Sun Apr 18 10:40:44 2010 -0400

    Add Tomeu's prototype script for converting pygtk to pygi

 pygi-convert.sh |   71
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 71 insertions(+), 0 deletions(-)

commit a3afdb5fd33de0bf11d63857a245a8f5edec242c
Author: Olav Vitters <olav@vitters.nl>
Date:	Sun Apr 18 13:01:58 2010 +0200

    Fix doap file

 pygi.doap |	4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

commit 0de73d0bba79f92af22f43693f3575c596712416
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sat Apr 17 16:01:31 2010 -0400

    Add Zach Goldberg as a pygi maintainer

 pygi.doap |	5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

commit a0e22e36e8cf0c1e0da3c0ec48c821fdb5a07ccd
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Apr 17 11:47:54 2010 -0400

    Require PyCairo

 configure.ac |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

commit 2778f8a1bf6379a46beec6546c8efcb0fec2d7ad
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Apr 17 11:40:14 2010 -0400

    Add examples/cairo-demo.py

 examples/cairo-demo.py |  121
 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 121 insertions(+), 0 deletions(-)

commit 610dd1eec87fab5c8c3badb4d104cba74477c745
Author: Zach Goldberg <zach@zachgoldberg.com>
Date:	Sat Apr 17 09:17:14 2010 -0400

    Implementation callback support with scoping and basic argument
    support.

    This patch was originally written by
    Zach Goldberg <zach@zachgoldberg.com> with modifications and
    review by Simon van der Linden <svdlinden@src.gnome.org> and
    Colin Walters <walters@verbum.org>.

    This impementation enforces the assumption that any one function
    signature can only have one (callback, userdata, destronotify) tuple.
    This allows us to move callback creation into the actual function
    invoke pipeline and also to keep just one destroy notify callback
    around, vastly simplifying the code.

    https://bugzilla.gnome.org/show_bug.cgi?id=603095

 configure.ac	     |	  2 +
 gi/Makefile.am      |	  4 +
 gi/pygi-argument.c  |	 12 ++-
 gi/pygi-callbacks.c |	216
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-callbacks.h |	 47 +++++++++++
 gi/pygi-closure.c   |	205
 ++++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-closure.h   |	 57 ++++++++++++++
 gi/pygi-info.c      |	 49 +++++++++++-
 gi/pygi-private.h   |	  2 +
 tests/test_gi.py    |	 64 +++++++++++++++-
 10 files changed, 648 insertions(+), 10 deletions(-)

commit a34cb9f0038a6c89e5e6c5f7761d48a5a833044f
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Apr 17 10:54:45 2010 -0400

    Add support for foreign structs

    https://bugzilla.gnome.org/show_bug.cgi?id=603712

 configure.ac		  |    6 ++
 gi/Makefile.am		  |   10 +++-
 gi/gimodule.c		  |    7 +++
 gi/pygi-argument.c	  |   27 +++++++++-
 gi/pygi-foreign-cairo.c  |  103 ++++++++++++++++++++++++++++++++++++++
 gi/pygi-foreign-cairo.h  |   55 ++++++++++++++++++++
 gi/pygi-foreign.c	  |  123
 ++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-foreign.h	  |   52 +++++++++++++++++++
 gi/pygi-private.h	  |    1 +
 tests/test_everything.py |   48 ++++++++++++++++++
 10 files changed, 428 insertions(+), 4 deletions(-)

commit e73b6f6fe8b5f23a2a390ae0a6bbced593ded155
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Apr 16 14:35:13 2010 -0400

    Allow creating structs with pointers

    https://bugzilla.gnome.org/show_bug.cgi?id=603537

 gi/pygi-struct.c |    6 ------
 tests/test_gi.py |    3 ++-
 2 files changed, 2 insertions(+), 7 deletions(-)

commit fc9ff02e53aacf9e77625c70985e99813544912a
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Apr 16 10:40:40 2010 -0400

    Add gdb and valgrind variants for the tests

 HACKING	   |   19 +++++++++++++++++++
 Makefile.am	   |   12 ++++++++++++
 tests/Makefile.am |   14 +++++++++++++-
 3 files changed, 44 insertions(+), 1 deletions(-)

commit 695ac7bc5c60371a32538d690c7a15509f3c9637
Author: John Stowers <john.stowers@gmail.com>
Date:	Fri Apr 16 14:36:11 2010 +1200

    Add build docs for windows

 Makefile.am  |    1 +
 README.win32 |   24 ++++++++++++++++++++++++
 2 files changed, 25 insertions(+), 0 deletions(-)

commit e580da87f0b2fd36cb5d8008fb2fb0c3b01f456a
Author: John Stowers <john.stowers@gmail.com>
Date:	Thu Apr 15 13:40:39 2010 +1200

    Setup.py cosmetic tidy

     * Remove local doc install, point to website instead
     * link to versioned docs

 pygobject_postinstall.py |   43
 ++++++++++++++++++++++++++-----------------
 setup.py		  |   39 ++++++++++++++-------------------------
 2 files changed, 40 insertions(+), 42 deletions(-)

commit 69ecd506c83ddf180c6cc9a2a8dc753a02543959
Author: John Stowers <john.stowers@gmail.com>
Date:	Sat Jul 25 14:12:30 2009 +1200

    Fix crash when importing gio

    Only seems to be necessary on windows, but
    no harm on linux as multiple calls to init
    are OK

 gio/giomodule.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit 5d159a13d89587cba189a0ca3203ac003e2f1f2b
Author: John Stowers <john.stowers@gmail.com>
Date:	Thu Apr 15 22:52:48 2010 +1200

    Bug 589671 - Dont use generate-constants

    This breaks the build using distutils, and it is
    largely unneeded. Just add the G_XXX constants
    to the module directly

 gobject/Makefile.am	      |   16 +--------
 gobject/constants.py	      |   83
 ++++++++++++++++++++++++++++++++++++++++++
 gobject/constants.py.in      |   50 -------------------------
 gobject/generate-constants.c |   44 ----------------------
 gobject/gobjectmodule.c      |   35 ++++++++++++++++++
 setup.py		      |    2 +-
 tests/runtests.py	      |    3 +-
 7 files changed, 121 insertions(+), 112 deletions(-)

commit 6d7a3ab9ce352692d0faccbf106974d264fa953d
Author: John Stowers <john.stowers@gmail.com>
Date:	Thu Apr 15 22:49:17 2010 +1200

    Bug 589671 - Fix setup.py for windows build

    * Building pyglib as a static private library
    * Update to include new defs
    * Modernise setup.py and add more util functions
      to dsextras

 dsextras.py |	 32 ++++++++++++++++--
 setup.py    |	102
 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
 2 files changed, 116 insertions(+), 18 deletions(-)

commit d11ef47072acae5801ce25c68d1289e425eb9fc2
Author: John Stowers <john.stowers@gmail.com>
Date:	Thu Apr 15 22:48:28 2010 +1200

    Include pygsource.h

 glib/pygiochannel.c |	  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit c5f6af4844c74354abc508d17969d9d45153acf2
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Thu Apr 15 14:25:59 2010 -0400

    Add metadata to the .doap file

 pygi.doap |	3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit 81796cb77cbe6b9598a652bd63c047af93e747ee
Author: John (J5) Palmieri <johnp@redhat.com>
Date:	Wed Apr 14 12:01:43 2010 -0400

    override that wasn't checked in - fixes some test cases

 gi/overrides/GIMarshallingTests.py |	69
 ++++++++++++++++++++++++++++++++++++
 1 files changed, 69 insertions(+), 0 deletions(-)

commit de5d2ea1584b01af809346316c7fbd4955a9db1d
Author: Colin Walters <walters@verbum.org>
Date:	Wed Apr 14 10:06:07 2010 -0400

    [Makefile.am] Clean up CFLAGS handling, don't override all: target

    First, we should move the CFLAGS into AM_CFLAGS, otherwise the
    per-target CFLAGS forces Automake to prefix object files, which
    is unnecessary since we only have one target.

    More importantly, avoid overriding the all: target here; that's
    owned by Automake.	Use all-local instead to append things to
    the end of the normal build.

 gi/Makefile.am |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

commit 5a47e96e3f580c973e6880dafa747f54c144c760
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Apr 13 19:15:49 2010 -0400

    Use GIMarshallingTests (old TestGI) in gobject-introspection

 gi/overrides/TestGI.py |   69 --
 tests/Makefile.am	|   40 -
 tests/libtestgi.c	| 2924
 ------------------------------------------------
 tests/libtestgi.h	|  628 -----------
 tests/test_gi.py	|  832 +++++++-------
 5 files changed, 416 insertions(+), 4077 deletions(-)

commit 681832c3cd040433a488a400693b68f213bf7078
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Tue Apr 13 13:33:12 2010 -0400

	codegen/docextract_to_xml.py: One more &...; replacement (&nbsp;).

	* codegen/docextract_to_xml.py: Replace &nbsp; which also causes
	errors with a regular space.

 codegen/docextract_to_xml.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit bd4e7f2459e34957aaae59b9be807d6dff5ec1eb
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Tue Apr 13 12:28:10 2010 -0400

	codegen/docextract_to_xml.py: Replace some &..; that cause errors.

	* codegen/docextract_to_xml.py (escape_text): Replace some &..;
	expressions that cause errors with more appropriate output.

 codegen/docextract_to_xml.py |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

commit f00b9ce91fc9c3aabd4af4132fc112d9e415e12e
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Sun Apr 11 17:46:40 2010 -0400

	codegen/docextract_to_xml.py: Handle C++ multi-line comments.

	* codegen/docextract_to_xml.py (escape_text): Translate '/*'
	and '*/'
	in text to '/ *' and '* /' respectively so that comment errors
	don't
	show up when the descriptions that include C++ code with C++
	multi-line comments are used in Doxygen blocks.

 codegen/docextract_to_xml.py |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

commit a2fcdecbb5e109da5568084d7acb2332af83b6f5
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Sun Apr 11 16:15:01 2010 -0400

	codegen/docextract.py: Stop final section processing on first
	match.

	* codegen/docextract.py (process_final_sections): Modify the final
	section pattern matching for loop to stop on first match so
	that it
	doesn't match both a colon return ('Returns: ...') and a no colon
	return ('Returns ...') which leads to annotation extraction
	errors.

 codegen/docextract.py |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

commit 825fd305f03b726665edca34963978ce27448182
Author: José Alburquerque <jaalburqu@svn.gnome.org>
Date:	Sun Apr 11 15:45:09 2010 -0400

	Update doc extraction tool to handle GObjectIntrospection
	annotations.

	* codegen/docextract.py (FunctionDoc): Renamed class to GtkDoc.
	(GtkDoc::annotations): Added a list field to store annotations
	which
	are 2-tuples of (name, value).
	(GtkDoc::ret): Modified field to store the return description
	along
	with a list of annotations as described above.
	(GtkDoc::params): Now holds a list of 3-tupples: name,
	description and
	annotations (as described above).
	(GtkDoc::block_type): Add a field to tell if the comment block
	is a
	function block, signal block or property block.
	(GtkDoc::set_type):
	(GtkDoc::get_type): Add methods for setting/getting the block
	type.
	(GtkDoc::add_param): Modified to also accept a list of
	annotations to
	be added with the parameter.
	(GtkDoc::add_annotation):
	(GtkDoc::get_annotations): Added methods to add/get annotations
	for
	the comment block.
	(GtkDoc::append_description): Renamed to append_to_description().
	(GtkDoc::get_param_description): Removed unused method.
	(GtkDoc::get_description): Added method to get block description.
	(GtkDoc::add_return): Added method to add a return accepting
	the first
	line of the description and its annotations.
	(GtkDoc::append_return): Renamed to append_to_return().
	(Regular expressions):
	 - Made the names of the variables un-abbreviated.

	 - Added 'since', 'deprecated' and 'rename to' regular
	 expressions.

	 - Modified the return matching regular expression so that
	 it doesn't
	   match descriptions that begin with 'Returns ...'.
	   This improves
	   the docs of many function.

	 - Added signal and property comment block identifier matching
	 regular
	   expressions in case those are useful.

	- Modified existing identifier matching regular expressions
	(function,
	  signal, and property regular expressions) to properly parse
	  annotations.	Also added a regular expression for extracting
	  annotations from the parameter and return descriptions.

	- Refined the function name matching regular expression to
	only accept
	  identifiers that begin with a lowercase letter.  This eliminates
	  'SECTION:' matches.

	- Finally, grouped commonly related expressions like
	return_pattern,
	  since_pattern, etc.  into groups (in lists) so that matching
	  those
	  sections can be done using loops.

	(Parsing algorithm): Modified the algorithm to use a functional
	approach to parsing.  Extra methods like skip_to_comment() and
	processs_params() have been added and used in the parse_file()
	function to now process the comment blocks.
	(parse_dir): Added file processing output to stderr.
	* codegen/docextract_to_xml.py (usage): Added function to
	print out
	the usage.
	(print_annotations): Added function to print the given list of
	annotations.
	(options): Added --with-signals (-i), with-properties (-p) and
	--with-annotation (-a) to the existing --source-dir (-s) option.

	(algorithm): Now prints annotations, if specified.  Also, prints
	signals and properties correctly (using names like
	Class::signal-one
	for signals and Classs:property) with xml such as <signal
	name="...">...</signal>.  The return xml is slightly modified with
	annotations but this would only be exhibited if annotation xml is
	requested.

 codegen/docextract.py	      |  439
 +++++++++++++++++++++++++++++++++---------
 codegen/docextract_to_xml.py |   87 ++++++--
 2 files changed, 414 insertions(+), 112 deletions(-)

commit 9fef1acb42cd900d4a814a7378f60bc189121785
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Apr 9 13:47:03 2010 +0200

    Always create the .so link

 gi/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e9f7fd414e94595e40eb1ba0fc471ca69136d82f
Author: Paul Bolle <pebolle@tiscali.nl>
Date:	Thu Apr 8 11:52:25 2010 +0200

    Docs: replace gio.IO_ERROR_* with gio.ERROR_*

    Signed-off-by: Paul Bolle <pebolle@tiscali.nl>

 docs/reference/pygio-file.xml	      |   58
 +++++++++++++++++-----------------
 docs/reference/pygio-inputstream.xml |   22 ++++++------
 docs/reference/pygio-mount.xml       |   10 +++---
 3 files changed, 45 insertions(+), 45 deletions(-)

commit 4cbd9941c5705970a9f7a429e236e1203d3155a1
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Apr 5 18:10:42 2010 +0200

    Bug 613341 - pygobject tests seem to require pygtk causing a circular
    dependencies problem

    move tests that require pygtk to pygtk itself

 tests/test_conversion.py |   83 -------------
 tests/test_enum.py	  |  234 -------------------------------------
 tests/test_gtype.py	  |  112 ------------------
 tests/test_subtype.py	  |  289
 ----------------------------------------------
 4 files changed, 0 insertions(+), 718 deletions(-)

commit ef0ceb266a45715ece58642fb0042e3376416755
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Wed Feb 3 20:33:03 2010 +0100

    Add modelines and copyright information to overrides modules

 gi/overrides/Gdk.py	|   21 +++++++++++++++++++++
 gi/overrides/Gtk.py	|   21 +++++++++++++++++++++
 gi/overrides/TestGI.py |   20 ++++++++++++++++++++
 3 files changed, 62 insertions(+), 0 deletions(-)

commit 5106523a4b8378997a1e6cb0488398aa73e7d9d5
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Wed Feb 3 20:29:55 2010 +0100

    Fix and complete overrides tests

    Those tests were missing in the last commit

    https://bugzilla.gnome.org/show_bug.cgi?id=602830

 gi/overrides/TestGI.py |   49
 ++++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gi.py	|    8 ++++++-
 2 files changed, 56 insertions(+), 1 deletions(-)

commit 23fc0f615d87994acafd9d39e92dd92b587fc2eb
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Thu Jan 21 17:30:51 2010 +0100

    Don't raise an error in _pygi_import if pygi support is disabled

    http://bugzilla.gnome.org/show_bug.cgi?id=607674

 gobject/pygboxed.c	 |    6 +-----
 gobject/pygi-external.h |    1 -
 gobject/pygobject.c	 |    6 +-----
 gobject/pygpointer.c	 |    6 +-----
 4 files changed, 3 insertions(+), 16 deletions(-)

commit aefac8c5f64bf059dd6652f8a843d17b34fa0854
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Jan 22 22:22:37 2010 +0100

    Remove support for pointers to basic types as input-only argument
    and return value

    There is no reason for an API to use such things, and
    g_function_info_invoke
    broke such features.

    https://bugzilla.gnome.org/show_bug.cgi?id=607759

 gi/pygi-argument.c |  586 ++++------------------------------------------
 gi/pygi-argument.h |	 1 -
 gi/pygi-info.c     |	 8 +-
 tests/libtestgi.c  |  660
 ----------------------------------------------------
 tests/libtestgi.h  |	86 -------
 tests/test_gi.py   |  144 ------------
 6 files changed, 47 insertions(+), 1438 deletions(-)

commit eaf7cb8ebb7e34f9493ac83b2f04af4dcf45f40f
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Jan 22 13:41:21 2010 +0100

    Restore the overrides support

    Add a ModuleProxy in front of the DynamicModule when an overrides
    module is
    present. There is no need for an overrides module to be a class;
    it can just be a module.

    Add an override decorator to override the wrapper of a registered
    type.

    Adapt Gdk and Gtk accordingly.

    Add tests.

    https://bugzilla.gnome.org/show_bug.cgi?id=602830

 gi/importer.py      |	 40 +++++++-------------
 gi/module.py	     |	 43 ++++++++++++++-------
 gi/overrides/Gdk.py |	 42 +++++++++++++-------
 gi/overrides/Gtk.py |	 16 +++----
 gi/types.py	     |	  6 +++
 tests/libtestgi.c   |	105
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/libtestgi.h   |	 49 ++++++++++++++++++++++++
 tests/test_gi.py    |	 36 +++++++++++++++++
 8 files changed, 273 insertions(+), 64 deletions(-)

commit 289d641775d1ea52d2a5379126b70b7fcee46683
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Jan 10 21:01:59 2010 +0100

    Initialize PyGPollFD_Type.fd_obj to NULL

    https://bugzilla.gnome.org/show_bug.cgi?id=606582

 gio/gcancellable.override |	1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit b11cf2595987c1f0fc4ffd834f07c98b92aa2355
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Jan 8 21:10:28 2010 +0100

    Initialize struct fields to 0 when allocating

 gi/pygi-struct.c |    2 +-
 tests/test_gi.py |    5 +++++
 2 files changed, 6 insertions(+), 1 deletions(-)

commit b4189be2b2d3c350fdf33e27309bee5a72e4f72a
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Jan 8 20:33:44 2010 +0100

    Don't set a default constructor for structures.

    Update tests accordingly.

    The reason for this change is that setting __new__ in the metaclass
    doesn't let
    one overrides it afterwards, in a subclass (in my experience, at
    least, even
    though it seems weird).

    https://bugzilla.gnome.org/show_bug.cgi?id=603536

 gi/types.py	   |   35 +++++++----------------------------
 tests/libtestgi.c |   33 ---------------------------------
 tests/libtestgi.h |	7 -------
 tests/test_gi.py  |   21 ++++++++++-----------
 4 files changed, 17 insertions(+), 79 deletions(-)

commit 4db68b958ea11bd2c3a88067cae03fd6bdd1d24b
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Tue Jan 5 13:36:44 2010 +0100

    Suppress compilation warnings

 gi/pygi-argument.c	 |    3 ++-
 gi/pygi-boxed.c	 |    2 --
 gi/pygobject-external.h |    2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

commit 4e2efa91d101bf755739e1cca8eee41eb0ad20fd
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jan 4 08:35:14 2010 +0100

    Bug 605937 - pygobject: Makefile.am sets $TMPDIR, disrupting distcc

    Committed a patch from Kevin Pyle

 Makefile.am |	 27 +++++++++++++--------------
 1 files changed, 13 insertions(+), 14 deletions(-)

commit 8ddcbca0e98e0b0c082170a2b2b6cfcbd7864b40
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Dec 11 22:24:30 2009 +0100

    sys.path must be modified after pygtk is imported

    Otherwise, sys.path is overridden by pygtk and gi.repository is
    loaded from the
    system's default site-package directory.

 tests/runtests.py |	1 -
 tests/test_gi.py  |	3 +++
 2 files changed, 3 insertions(+), 1 deletions(-)

commit 284a1e1c0143c95d3007cf58e6c248b5d11fb4d1
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun Jan 3 11:02:57 2010 +0100

    Wrap gio.Cancellable.make_pollfd() and add a test

 gio/Makefile.am	    |	 1 +
 gio/gcancellable.override  |	37 +++++++++++++++++++++++++++++++++++++
 gio/gio.override	    |	 3 +++
 tests/test_gcancellable.py |	15 +++++++++++++++
 4 files changed, 56 insertions(+), 0 deletions(-)

commit 82d7bcbf37200ee2ef5892dd12bebd2f39965c56
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jan 2 23:15:56 2010 +0100

    Make cancellable an optional parameter in many methods

 gio/gio.defs |  102
 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 51 insertions(+), 51 deletions(-)

commit 49a078cd22d55dc33a03ecfda235d63955edc741
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jan 2 23:15:21 2010 +0100

    Post release version bump to 2.21.2

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 4f9f1f43ab4e2cfb204ffa0e257a34cfd95d84e2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jan 2 22:58:36 2010 +0100

    Update NEWS and release PyGObject-2.21.1

 NEWS |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

commit c1f34be73bd186d7b4682dfef133da2c4229d213
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 20:25:35 2010 +0100

    Wrap gio.Volume.eject_with_operation()

 gio/gvolume.override |   54
 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit 9b76fbff6f6897aaf26ed4644c1f19efc2826917
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 20:22:21 2010 +0100

    gio.Mount.unmount_with_operation() fix a copy/paste leftover

 gio/gmount.override |	  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 6f459786dd641cd49d81eba403d940620f961cab
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 20:21:05 2010 +0100

    Wrap gio.Mount.eject_with_operation()

 gio/gmount.override |	 54
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit d4b5d1b4839364e5676eb2da28f1d21db7e2552d
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 20:15:38 2010 +0100

    Wrap gio.Mount.unmount_mountable_with_operation()

 gio/gmount.override |	 54
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit e919d47c2430451b436cec955e9b99237f97028c
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 18:22:46 2010 +0100

    Wrap File.unmount_mountable_with_operation()

 gio/gfile.override |	54
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit 5a614df9c5507d67f240462f7bf71b4cd411addf
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 18:14:11 2010 +0100

    Wrap gio.File.stop_mountable()

 gio/gfile.override |	52
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)

commit 6af506647f36f2b825bc6556df5ee57fa7721906
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 18:10:49 2010 +0100

    Wrap gio.File.start_mountable()

 gio/gfile.override |	52
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)

commit e700efc839fc0b651fc9794a1611190bffa80263
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 18:02:46 2010 +0100

    Wrap gio.File.replace_readwrite_async()

 gio/gfile.override |	55
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

commit 92662f129fc728258fd5e34f53dcb081e3715017
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 17:00:26 2010 +0100

    Wrap gio.File.poll_mountable()

 gio/gfile.override |	41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

commit 99902b786500948c3278779841e4db54223b9256
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 16:56:26 2010 +0100

    Wrap gio.File.open_readwrite_async()

 gio/gfile.override |	44 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 44 insertions(+), 0 deletions(-)

commit 8cff5d53183ae81364ac74a34a1d52e55e082eb4
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 16:50:15 2010 +0100

    Wrap gio.File.eject_mountable_with_operation()

 gio/gfile.override |	54
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit ca436fe7785fd24b0f0e65f2f8c9fa6478277682
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 13:30:24 2010 +0100

    Wrap gio.File.create_readwrite_async() and add a test

 gio/gfile.override |	51
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gio.py  |	24 ++++++++++++++++++++++++
 2 files changed, 75 insertions(+), 0 deletions(-)

commit f72c5e451dfaeb01b3c3d9243fed2732d3620462
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 13:20:11 2010 +0100

    Wrap gio.Drive.stop()

 gio/gdrive.override |	 52
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)

commit 29043bade408338cefa13fb4b0c875aabd3ef05e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 13:00:42 2010 +0100

    Wrap gio.Drive.start()

 gio/gdrive.override |	 52
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)

commit dff374287bbecc8af782bbc726fad86c6c867754
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 12:45:29 2010 +0100

    Add more remainders on missing methods of gio.Socket and related types

 gio/gsocket.override |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit b8c7e996498bd72df551011af85ff05ef7335b4f
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 12:41:08 2010 +0100

    Wrap gio.SocketListener.accept_socket_async|finish() and add a test

 gio/gsocket.override  |   86
 +++++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gsocket.py |   24 +++++++++++++
 2 files changed, 108 insertions(+), 2 deletions(-)

commit a5ae2d5ba3db34967fe07a3cc97b75df2793988c
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 12:28:53 2010 +0100

    Wrap gio.SocketListener.accept_finish() and add a test

 gio/gsocket.override  |   44 ++++++++++++++++++++++++++++++++++++++++++--
 tests/test_gsocket.py |   24 ++++++++++++++++++++++++
 2 files changed, 66 insertions(+), 2 deletions(-)

commit a5ab26cc1bb3e9dd57e2fdb26ef5c02e8066d097
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 11:19:34 2010 +0100

    Wrap gio.SocketListener.accept_async()

 gio/gsocket.override |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

commit c9496b29ef9ef232020a4044577d2947353953a5
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jan 1 11:14:35 2010 +0100

    Wrap gio.SocketListener.accept_socket() and add a test

 gio/gsocket.override  |   48
 +++++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gsocket.py |   13 +++++++++++++
 2 files changed, 60 insertions(+), 1 deletions(-)

commit 1aa5e301c49f11e1c5ef58de44b4b03f714d1a70
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 16:35:18 2009 +0100

    Wrap gio.SocketListener.accept() and add a test

 gio/gsocket.override  |   46
 +++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gsocket.py |   13 +++++++++++++
 2 files changed, 58 insertions(+), 1 deletions(-)

commit aaedcf166c78baf5449ef59d0ade4a29077fedc7
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 16:25:33 2009 +0100

    Make cancellable optional in gio.SocketClient.connect_to_host()

 gio/gio.defs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 3829d7667b19126fb74562b28d271e616b154c99
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 15:25:10 2009 +0100

    Wrap gio.SocketListener.add_address() and add a test

 gio/gsocket.override  |   57
 ++++++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gsocket.py |    9 +++++++
 2 files changed, 65 insertions(+), 1 deletions(-)

commit 5bec72f34ea75bc56158cae5c39d61a2a4e7e601
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 10:19:47 2009 +0100

    Add more remainders on missing methods of gio.Socket and related types

 gio/gsocket.override |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

commit b08b20f2b1a57bcbf400d6fe8e87cf052bdb719d
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 10:16:18 2009 +0100

    Wrap gio.SocketClient.connect_to_service_async()

 gio/gsocket.override |   47
 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

commit 116ea1bfe32946e67aa54eb8dc7b977e57f254c2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 10:10:43 2009 +0100

    Wrap gio.SocketClient.connect_to_host_async()

 gio/gsocket.override |   48
 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

commit 9c930910505d5b9001b8cec17ff98fadeaa799e2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 31 09:59:46 2009 +0100

    Wrap gio.SocketClient.connect_async()

 gio/gsocket.override |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)

commit dff024256295c15e49888ad9d5fef74a7746edd7
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 23:44:25 2009 +0100

    Wrap gio.SocketAddressEnumerator.next_async() and add a test

 gio/gsocket.override  |   42 ++++++++++++++++++++++++++++++++++++++++++
 tests/test_gsocket.py |   16 ++++++++++++++++
 2 files changed, 58 insertions(+), 0 deletions(-)

commit e2330bd0d6cbc49b0ecb27b30e3b0593935ce229
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 23:43:14 2009 +0100

    Add a missing object gio.InetSocketAddress new in GIO 2.22

 gio/gio-types.defs |	 7 +++++++
 gio/gio.defs	    |	31 +++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+), 0 deletions(-)

commit 6040b33467ea381c6cb02f6a5efc0745fa8fa47b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 22:54:47 2009 +0100

    Make cancellable optional for gio.SocketAddressEnumerator.next()

 gio/gio.defs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit b19f59790b9de943d69b6c5e483928e0443c3d20
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 22:17:44 2009 +0100

    Add a remainder of the Socket methods that needs manual wrapping still

 gio/gsocket.override |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

commit 771a7c3fdef7b2e98e509293a8376a81c1282286
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 17:20:35 2009 +0100

    Wrap gio.Socket.condition_wait() and add a test

 gio/gsocket.override  |   27 +++++++++++++++++++++++++++
 tests/test_gsocket.py |    6 +++++-
 2 files changed, 32 insertions(+), 1 deletions(-)

commit 50960656815b0897a5ebe5f011537b8dcbdc857e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 16:21:49 2009 +0100

    Wrap gio.Socket.condition_check() and add a test

 gio/Makefile.am       |    1 +
 gio/gio.override      |    1 +
 gio/gsocket.override  |   41 +++++++++++++++++++++++++++++++++++++++++
 tests/test_gsocket.py |   21 +++++++++++++++++++++
 4 files changed, 64 insertions(+), 0 deletions(-)

commit de7a359e81792ae8573ac944455ea289985449ed
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 14:07:52 2009 +0100

    Wrap gio.Resolver.lookup_service_finish() and add a test

 gio/gresolver.override  |   37 +++++++++++++++++++++++++++++++++++++
 tests/test_gresolver.py |   13 +++++++++++++
 2 files changed, 50 insertions(+), 0 deletions(-)

commit 308421789ce849040d645077c41c80b6e2e65e83
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 14:00:22 2009 +0100

    Wrap gio.Resolver.lookup_service_async()

 gio/gresolver.override |   48
 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

commit 9d56ce775f56fff1b1ef3c75843c0583e39f75c3
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Dec 30 11:11:32 2009 +0100

    Wrap gio.Resolver.lookup_service() and add a test

 gio/gresolver.override  |   42 ++++++++++++++++++++++++++++++++++++++++++
 tests/test_gresolver.py |    5 +++++
 2 files changed, 47 insertions(+), 0 deletions(-)

commit 7fc71f490494dae73a5264869a97a9d30814930e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 22:12:50 2009 +0100

    Wrap gio.Resolver.lookup_by_address_async() and add a test

 gio/gresolver.override  |   46
 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gresolver.py |   14 ++++++++++++++
 2 files changed, 60 insertions(+), 0 deletions(-)

commit c91656dbe56f07d3ebbad5113467c22427cf212a
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 21:41:30 2009 +0100

    Wrap gio.Resolver.lookup_by_name_finish() and add a test

 gio/gresolver.override  |   82
 +++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gresolver.py |   16 ++++++++-
 2 files changed, 96 insertions(+), 2 deletions(-)

commit 45b477342fa1c2435917c6d97745ad57665c4734
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 17:15:44 2009 +0100

    Wrap gio.Drive.eject_with_data()

 gio/gdrive.override |	 54
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

commit 635227480f9659a1f91ab1ec12536d3ed012a976
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 17:06:52 2009 +0100

    Deprecate old gio.Drive methods

 gio/gdrive.override |	  7 ++++++-
 gio/gio.defs	     |	  1 +
 2 files changed, 7 insertions(+), 1 deletions(-)

commit 3c0cbc95af29b1e192ed4b5963e96e39c70b349c
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 13:51:54 2009 +0100

    Small fix in the header

 gio/gdrive.override |	  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 7589128515b79d836365247dc876538c6352da23
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 12:40:50 2009 +0100

    Wrap gio.Resolver.lookup_by_name() and add a couple of tests

 gio/Makefile.am	 |    1 +
 gio/gio.override	 |    1 +
 gio/gresolver.override  |   57
 +++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gresolver.py |   21 +++++++++++++++++
 4 files changed, 80 insertions(+), 0 deletions(-)

commit 604d2bf220b1fefa415baaedbdb2882dbaf9e07e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 12:39:13 2009 +0100

    Make cancellable an optional parameter in
    gio.Resolver.lookup_by_address()

 gio/gio.defs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 00029145f4cd10759b37b38fb9f72435bf26b28b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 10:15:14 2009 +0100

    Strip g_ prefix for many other functions

 gio/gio.defs |   94
 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 47 insertions(+), 47 deletions(-)

commit 56d5dfc4fd862e32c19f944a0feb7a00a9154f06
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 10:12:53 2009 +0100

    Strip g_prefix from InetAddress functions

 gio/gio.defs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 1d360301d51a587a36a59f5d62e354484bbd2b31
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 10:03:59 2009 +0100

    Fix function name gio.resolver_get_default()

    Strip the g_ prefix from function name

 gio/gio.defs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 0fe00109c4f6fc27cbaae9b0a24ecfac71355d2f
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Dec 29 09:54:05 2009 +0100

    Wrap gio.FileIOStream.query_info_async() and add a test

 gio/Makefile.am	    |	 1 +
 gio/gfileiostream.override |	68
 ++++++++++++++++++++++++++++++++++++++++++++
 gio/gio.override	    |	 1 +
 tests/test_gio.py	    |	18 +++++++++++
 4 files changed, 88 insertions(+), 0 deletions(-)

commit 86783c695f3641b9491962e8f95a4dcb91f4017c
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Dec 29 13:08:29 2009 +0100

    Register enums and flags in PyGI if needed

    https://bugzilla.gnome.org/show_bug.cgi?id=603534

 gobject/pygenum.c  |	20 ++++++++++++++------
 gobject/pygflags.c |	19 +++++++++++++------
 2 files changed, 27 insertions(+), 12 deletions(-)

commit b90c01cff5ff5cb2796182f2ffd7b5248eaeed6a
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Dec 28 22:41:54 2009 +0100

    Wrap GIOStream.close_async() and add a test

 gio/Makefile.am	|    1 +
 gio/gio.override	|    1 +
 gio/giostream.override |   68
 ++++++++++++++++++++++++++++++++++++++++++++++++
 tests/test_gio.py	|   21 +++++++++++++++
 4 files changed, 91 insertions(+), 0 deletions(-)

commit 0bff01bcee73a0e0d18342331136119c4e8bf151
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Dec 28 22:39:09 2009 +0100

    Make cancellable an optional parameter in GFile.create_readwrite()

 gio/gio.defs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 1cabd733cde269ce3164834933f4a226673ecb0b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Dec 28 21:39:50 2009 +0100

    Remove a duplicate entry in gio.defs

 gio/gio.defs |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

commit 9ac372ad0bcfdec4bb1c96bc152246542a59a9b1
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Dec 28 21:37:49 2009 +0100

    Wrap gio.FileInfo.set_modification_time and add a test

 gio/gfileinfo.override |   33 ++++++++++++++++++++++++++++++++-
 tests/test_gio.py	|    7 ++++++-
 2 files changed, 38 insertions(+), 2 deletions(-)

commit 7bc2673f92138b1804d8eba091942d14d8884f90
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Dec 28 18:28:03 2009 +0100

    Wrap gio.EmblemedIcon.get_emblems() and add a test

 gio/gicon.override  |	 14 ++++++++++++++
 tests/test_gicon.py |	  7 +++++++
 2 files changed, 21 insertions(+), 0 deletions(-)

commit 3d5056ad766d6856d8d6459fe9b377de2f0fd172
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Dec 26 22:27:48 2009 +0100

    Update Enums and Flags with new API

 gio/gio-types.defs |  153
 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 149 insertions(+), 4 deletions(-)

commit 62a9d660a4a2d5fab1d57c6c96c984ff02d25ccd
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Dec 25 18:06:39 2009 +0100

    Post release version bump to 2.21.1

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 2bd92cba5b028f0f78c35ecb34e648e95248f9d3
Author: Bastian Winkler <buz@netbuz.org>
Date:	Fri Aug 14 15:10:26 2009 +0200

    Fix handling of uchar in pyg_value_from_pyobject

    Set the value by g_value_set_uchar and allow to use integer types
    from python.

 gobject/pygtype.c |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

commit 828d0f042b59ea0319f33a23803c179af34ef2f1
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Dec 22 18:05:47 2009 +0100

    Add Gtk.keysyms to overrides

 gi/overrides/Gtk.py	  |    2 +
 gi/overrides/Makefile.am |    1 +
 gi/overrides/keysyms.py  | 1499
 ++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 1502 insertions(+), 0 deletions(-)

commit 24fa1224ff00b9da177e0bfaa1e14e1b899e4976
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Wed Nov 25 10:33:56 2009 +0100

    The array field 'length' starts to count from the C arg list, so
    need to decrement when it's a method

    https://bugzilla.gnome.org/show_bug.cgi?id=602640

 gi/pygi-argument.c |	11 ++++++++-
 gi/pygi-argument.h |	 3 +-
 gi/pygi-info.c     |	14 ++++++++++-
 tests/libtestgi.c  |	60
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/libtestgi.h  |	 4 +++
 tests/test_gi.py   |	15 +++++++++++++
 6 files changed, 103 insertions(+), 4 deletions(-)

commit 867536c6734e606d045760837ed22583da06566e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Dec 18 10:50:09 2009 +0100

    Update NEWS and README, release pygobject 2.21.0

 NEWS	|   18 ++++++++++++++++++
 README |    6 +++---
 2 files changed, 21 insertions(+), 3 deletions(-)

commit f50fbd24fa61863aaefa4ae1e12e0b314ecd43ae
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Dec 18 10:31:48 2009 +0100

    Add pygi-external.h into Makefile SOURCES

 gobject/Makefile.am |	  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 108c03b78f04b4bcfe066a6cb4d941e172bd32fe
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Dec 18 01:20:34 2009 +0100

    Bug 598435 - No wrapping for g_find_program_in_path ()

 glib/glibmodule.c |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

commit d3d5cb3a4a2c2cb2bd0c2571304d59e19bc08452
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 17 21:54:36 2009 +0100

    Wrap new API added in GIO-UNIX 2.22

 gio/unix-types.defs |	 22 ++++++++++
 gio/unix.defs	     |	115
 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 gio/unix.override   |	  8 ++++
 3 files changed, 144 insertions(+), 1 deletions(-)

commit c87c8a81947a68507e8f3bcaf8e0e969b3e5331b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 17 21:52:11 2009 +0100

    Bump required glib version to 2.22.4

    I've committed a patch to glib which will be released in the stable
    branch.
    Without the patch the unix module will fail, so I'm forced to bump.

 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit b630c8d4b1e55938dac89729768c4a877b305215
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Dec 17 02:24:45 2009 +0100

    Properly define Connectable as interface type and not object type

 gio/gio-types.defs |	12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

commit e955b931b07113c7432f7a85f882f69f12d263ad
Author: Anderson Lizardo <anderson.lizardo@openbossa.org>
Date:	Mon Nov 30 22:01:25 2009 +0100

    Depend on GLib 2.20 rather than 2.22

    Backport g_array_get_element_size.

    https://bugzilla.gnome.org/show_bug.cgi?id=603411

 configure.ac	   |	2 +-
 gi/pygi-private.h |   19 +++++++++++++++++++
 2 files changed, 20 insertions(+), 1 deletions(-)

commit 542fdf6da4ad8f2d28d0d50152bd93cb4d8ee39a
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Nov 28 18:48:19 2009 +0000

    Use the limit constants from glib and interpret G_MAXUINT32 as
    PyLong_FromLongLong

    https://bugzilla.gnome.org/show_bug.cgi?id=602384

 gi/pygi-argument.c |	14 +++++++-------
 tests/test_gi.py   |	18 +++++++++---------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit 38e89942d29f2a1dba47ab4a8d5edc84322707cd
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Mon Nov 30 00:10:56 2009 +0100

    Suppress warnings about format conversion

    https://bugzilla.gnome.org/show_bug.cgi?id=603355

 gobject/generate-constants.c |   32 ++++++++++++++++----------------
 1 files changed, 16 insertions(+), 16 deletions(-)

commit cfa7d005487e17e8f7c1ceb14282d3a5baadb736
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 28 00:22:21 2009 +0100

    Remove global checks for pointers and move them in type cases that
    need them

 gi/pygi-argument.c |  516
 ++++++++++++++++++++++++++++++++++++++++++----------
 gi/pygi-info.c     |  333 +++++++++++++++++----------------
 2 files changed, 596 insertions(+), 253 deletions(-)

commit d1ae73f3cf7cebdb74c9ec56b08928a2a53b9de6
Author: Johan Dahlin <johan@gnome.org>
Date:	Mon Nov 23 15:58:17 2009 -0200

    Pythonify. Avoid ; and () around if statements

    https://bugzilla.gnome.org/show_bug.cgi?id=602830

 gi/types.py |	  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit a8660621679c629fc81320a8ddf5bf2c7ee1f177
Author: Johan Dahlin <johan@gnome.org>
Date:	Tue Nov 24 10:36:18 2009 -0200

    Remove trailing whitespace

    https://bugzilla.gnome.org/show_bug.cgi?id=602830

 gi/module.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 66c34805223af9e63c7d61f21a3dbd7505a8f256
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon Nov 30 10:03:34 2009 +0000

    Set a default constructor for boxed structs that don't have one

    https://bugzilla.gnome.org/show_bug.cgi?id=602735

 gi/Makefile.am     |	 2 +
 gi/gimodule.c	    |	 1 +
 gi/module.py	    |	 2 +-
 gi/pygi-argument.c |	14 ++++-
 gi/pygi-boxed.c    |  184
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 gi/pygi-boxed.h    |	40 +++++++++++
 gi/pygi-info.c     |	 2 +-
 gi/pygi-private.h  |	 1 +
 gi/pygi.h	    |	 6 ++
 gi/types.py	    |	18 -----
 tests/libtestgi.c  |	72 ++++++++++----------
 tests/libtestgi.h  |	18 +++---
 tests/test_gi.py   |	47 ++++++++------
 13 files changed, 321 insertions(+), 86 deletions(-)

commit e7e2fccae36c28c7e9f288fcd4c90a001140e307
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon Nov 30 10:53:57 2009 +0000

    Revert "Use the limit constants from glib and interpret G_MAXUINT32
    as PyLong_FromLongLong"

    This reverts commit 05a2ed55f3e5d2620de8b3b6b0d99e928ef3b041.

 gi/pygi-argument.c |	14 +++++++-------
 tests/test_gi.py   |	18 +++++++++---------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit 05a2ed55f3e5d2620de8b3b6b0d99e928ef3b041
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Nov 28 18:48:19 2009 +0000

    Use the limit constants from glib and interpret G_MAXUINT32 as
    PyLong_FromLongLong

    https://bugzilla.gnome.org/show_bug.cgi?id=602384

 gi/pygi-argument.c |	14 +++++++-------
 tests/test_gi.py   |	18 +++++++++---------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit e24d155dd7b4a5b9c25c054137d1370c369d3192
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Nov 28 18:45:54 2009 +0000

    Add the missing limit constants from glibconfig.h

    https://bugzilla.gnome.org/show_bug.cgi?id=603244

 gobject/generate-constants.c |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

commit 3a295cb7ffaaaf29c71b8833cf0ee5ec7ceaa909
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Nov 28 18:48:49 2009 +0100

    Fix bad name when rebuilding the unix source module

 gio/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit a8cbb6fb72dbe6630d1265b18095c9a96f496b86
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Nov 28 18:47:26 2009 +0100

    Wrap new API added in GIO 2.22

 gio/gio-types.defs |  138 ++++
 gio/gio.defs	    | 2012
 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 2144 insertions(+), 6 deletions(-)

commit 96f6c638709636d7e2ddf560b877879691da3314
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sat Nov 28 11:03:51 2009 +0000

    A few tests about interfaces

    https://bugzilla.gnome.org/show_bug.cgi?id=601181

 tests/libtestgi.c |   23 +++++++++++++++++++++++
 tests/libtestgi.h |   16 ++++++++++++++++
 tests/test_gi.py  |   21 +++++++++++++++++++++
 3 files changed, 60 insertions(+), 0 deletions(-)

commit 076ba3156c13375a75983cef7a409c8c8afea119
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Thu Nov 26 23:50:54 2009 +0100

    Fix members initialization in metaclasses

    In metaclasses, the test for the name of the class was wrong, since it
    prevented one to create a subclass with the same name (especially
    annoying for
    overrides). Now, if a GType is available from the info, the fact
    that it
    doesn't have any wrapper yet means that the metaclass is creating
    the base
    class, which will be registerd just after its creation. This is
    true for
    objects, and for structures registered as boxed or pointer too.

    This patch includes a test for basic subclassing in Python. It
    notably tests
    that methods don't get overridden by the metaclass.

 gi/types.py	  |    5 +++--
 tests/test_gi.py |   19 +++++++++++++++++++
 2 files changed, 22 insertions(+), 2 deletions(-)

commit ac80e64c9f7d257865aa820753e52d56cf2871c8
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Fri Nov 27 12:06:59 2009 +0000

    Structs in arrays are not marshalled correctly

    https://bugzilla.gnome.org/show_bug.cgi?id=602709

 gi/pygi-argument.c |	29 ++++++++++++++++++++++++-----
 tests/libtestgi.c  |	23 ++++++++++++++++++++++-
 tests/libtestgi.h  |	 7 +++++--
 tests/test_gi.py   |	 8 ++++++++
 4 files changed, 59 insertions(+), 8 deletions(-)

commit 4a373b8ad6ec137e911b92a3e745e0fd76541292
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Wed Nov 25 16:53:55 2009 +0100

    Use the right variable when looking up in sys.modules

 gi/importer.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit fc3dca018e85aee34ade79d104ebd8cdd1dd5968
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Nov 24 15:52:47 2009 +0100

    Accept 0 as a valid value for flag and enum arguments

    https://bugzilla.gnome.org/show_bug.cgi?id=602638

 gi/pygi-argument.c |	19 ++++++++++++++++++-
 tests/libtestgi.c  |	 6 ++++++
 tests/libtestgi.h  |	 1 +
 tests/test_gi.py   |	 1 +
 4 files changed, 26 insertions(+), 1 deletions(-)

commit 33081c29a1c2fdec2b8bfe17ae0a72b8db7a8d84
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Tue Nov 24 13:10:11 2009 +0100

    Add stuff to .gitignore

 .gitignore |	 7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

commit 5c010fe673d9bd01c27c8d7d312064665275888c
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Mon Nov 23 22:39:12 2009 +0100

    Remove the girepository module

 Makefile.am			    |	 2 +-
 configure.ac			    |	17 -
 girepository/Makefile.am	    |	54 --
 girepository/__init__.py	    |	24 -
 girepository/bank-argument.c	    |  379 ------------
 girepository/bank-info.c	    | 1194
 ------------------------------------
 girepository/bank-repository.c     |  236 -------
 girepository/bank.c		    |  155 -----
 girepository/bank.h		    |	80 ---
 girepository/btypes.py		    |  300 ---------
 girepository/importer.py	    |	51 --
 girepository/module.py		    |  224 -------
 girepository/overrides/Gdk.py	    |	14 -
 girepository/overrides/Gtk.py	    |	 8 -
 girepository/repository.py	    |	51 --
 tests/test_girepository.py	    |  386 ------------
 16 files changed, 1 insertions(+), 3174 deletions(-)

commit a644edf0515c26ed027522891ccf02aceac764e8
Author: Johan Dahlin <johan@gnome.org>
Date:	Mon Nov 23 15:32:16 2009 -0200

    Create overridden modules in two passes

    This patch splits overridden module creation into two passes. The
    first pass
    creates the auto-generated module normally before the overridden
    module is
    attempted to be imported. The second pass imports the overridden
    module and
    replaces the auto-generated module with the overridden. This is
    necessary
    for the overridden modules to be able to access the auto-generated
    ones.

 gi/importer.py |   34 +++++++++++++++++++++-------------
 1 files changed, 21 insertions(+), 13 deletions(-)

commit fad89e12a744b57e6348968f351d25d167de8248
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Nov 22 17:56:20 2009 +0100

    Add support for Any arguments

    https://bugzilla.gnome.org/show_bug.cgi?id=601253

 gi/pygi-argument.c |	20 ++++++++++++--------
 tests/libtestgi.c  |	 5 +++++
 tests/libtestgi.h  |	 5 +++++
 tests/test_gi.py   |	 5 +++++
 4 files changed, 27 insertions(+), 8 deletions(-)

commit 1dc62a998dd8d2a0a397f8309011a8d79cb56034
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Nov 22 17:25:04 2009 +0100

    Register interfaces

    https://bugzilla.gnome.org/show_bug.cgi?id=601181

 gi/gimodule.c |   33 +++++++++++++++++++++++++++++++++
 gi/types.py   |    5 ++++-
 2 files changed, 37 insertions(+), 1 deletions(-)

commit d67d5afb5115c1d8294415b2e1a82af2c737ba17
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun Nov 22 18:23:02 2009 +0200

    Ignore one more file.

 .gitignore |	 1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 408b2186aea58a41ec26b9d0ca29ecd42df5ef7e
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun Nov 22 18:22:23 2009 +0200

    Fix wrong minimum checking in float properties

    Bug #587637.  Test the fix.

 gobject/propertyhelper.py |	5 +++--
 tests/test_properties.py  |	6 ++++++
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 6ccf58afcf58e118903ced0135f0fe69b00e09ad
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Mon Oct 26 18:06:06 2009 +0000

    Treat GI_INFO_TYPE_INTERFACE same as GI_INFO_TYPE_OBJECT

 gi/pygi-argument.c |	 3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit e6f730d6e1431e36bd5f6b503a1038617f8d1e7d
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 14 21:42:43 2009 +0100

    Import pygtk properly to avoid failure on some setups

 tests/test_gi.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit e604a89e9dc1a79687ef5fb94af7a2182be07dfb
Author: Alex Dedul <rotmer@gmail.com>
Date:	Sat Nov 14 21:39:15 2009 +0100

    Search for python-config-${VERSION} when python${VERSION}-config is
    not found

    On Gentoo, notably, the config tool is named python-config-${VERSION},
    while on
    Fedora and Ubuntu, it is named python${VERSION}-config.

    Signed-off-by: Simon van der Linden <svdlinden@src.gnome.org>

 configure.ac |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

commit 4a887cfabb326cb99dc65073d592c03f59e2f141
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 14 21:36:19 2009 +0100

    Fix silent rules setup

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 602afea88c338a38327cd84e08703c5daa384ec6
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Tue Nov 10 22:32:33 2009 +0200

    Move threads_init() function from 'gobject' to 'glib'

    Retain in original place for backward compatibility, but remove it
    from the docs.

 docs/reference/pygobject-functions.xml |   36
 ++++++-------------------------
 glib/glibmodule.c			|   16 ++++++++++++++
 2 files changed, 23 insertions(+), 29 deletions(-)

commit 734755912fff11332dc0e96317b7d6b7c4014e6a
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Mon Nov 9 22:44:12 2009 +0100

    Remove PyGObject patches since they've been merged to master

 ...pytype-aware-of-the-interface-enum-flags-.patch |	78 --------
 patches/0002-Fix-girpository-build-setup.patch     |  186
 ------------------
 ...capabilities-to-import-wrappers-from-pygi.patch |  200
 --------------------
 ...ances-by-calling-tp_alloc-rather-than-PyO.patch |	29 ---
 4 files changed, 0 insertions(+), 493 deletions(-)

commit 6a69288941e65312fe82649ec72d2f21b2dc618f
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 7 23:42:07 2009 +0100

    Create instances by calling tp_alloc rather than PyObject_NEW

    PyObject_NEW calls a generic allocator and should only be called by
    tp_new, knowing
    that the type's free function agrees. In pyg_boxed_new, we may
    allocate
    PyGBoxed subtypes, so the subtype's allocation function must be
    called instead.

 gobject/pygboxed.c |	 3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 000f7c36e667c6e078e3370769ea868e56a1b4ee
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 7 16:43:35 2009 +0100

    Add capabilities to import wrappers from pygi

    At instance creation for boxed and pointers, at lookup for objects,
    when the gtype has no wrapper yet, a wrapper may be imported from
    pygi.

    The feature is turned on at configure time by --enable-pygi.

    Because we couldn't create a circular build dependency, PyGI's import
    function and
    API definition had to be copied in this tree.

 configure.ac		 |    8 +++++
 gobject/pygboxed.c	 |   10 +++++++
 gobject/pygi-external.h |   66
 +++++++++++++++++++++++++++++++++++++++++++++++
 gobject/pygobject.c	 |   10 +++++++
 gobject/pygpointer.c	 |   11 ++++++++
 5 files changed, 105 insertions(+), 0 deletions(-)

commit fdfbc90dbc9e305646b62d73de506b5e0e99cc91
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sun Nov 8 20:03:58 2009 +0100

    Update PyGObject patches

    A file, pygi-external.h, was missing in patch #3.

 ...capabilities-to-import-wrappers-from-pygi.patch |	74
 ++++++++++++++++++--
 ...ances-by-calling-tp_alloc-rather-than-PyO.patch |	 2 +-
 2 files changed, 69 insertions(+), 7 deletions(-)

commit 8f53ca8a72f9958711765281dd5c5bdfb7042d7d
Author: Tomeu Vizoso <tomeu@sugarlabs.org>
Date:	Sun Nov 8 16:52:18 2009 +0100

    Add myself to pygi.doap

 pygi.doap |	5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

commit 6f50d5102aec9288e1851f12e9d232b9c141d524
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sun Nov 8 15:40:51 2009 +0100

    Add a doap file

 pygi.doap |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

commit ce673b9027868e6add4eeb438bc707eb40bfd046
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sun Nov 8 13:06:54 2009 +0100

    Add PyGObject patches

 ...pytype-aware-of-the-interface-enum-flags-.patch |	78 ++++++++
 patches/0002-Fix-girpository-build-setup.patch     |  186
 ++++++++++++++++++++
 ...capabilities-to-import-wrappers-from-pygi.patch |  138 +++++++++++++++
 ...ances-by-calling-tp_alloc-rather-than-PyO.patch |	29 +++
 4 files changed, 431 insertions(+), 0 deletions(-)

commit b24fd9633cabe1d95cde173a04e9a49833b06a26
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sun Nov 8 12:35:08 2009 +0100

    Initial import

 .gitignore		   |   33 +
 Makefile.am		   |   10 +
 autogen.sh		   |  159 +++
 configure.ac		   |   53 +
 gi/Makefile.am		   |   50 +
 gi/__init__.py		   |   24 +
 gi/gimodule.c		   |  144 ++
 gi/importer.py		   |   89 ++
 gi/module.py		   |  167 +++
 gi/overrides/Gdk.py	   |   21 +
 gi/overrides/Gtk.py	   |   13 +
 gi/overrides/Makefile.am  |   10 +
 gi/pygi-argument.c	   | 1976 ++++++++++++++++++++++++++
 gi/pygi-argument.h	   |   65 +
 gi/pygi-info.c		   | 2093 ++++++++++++++++++++++++++++
 gi/pygi-info.h		   |   64 +
 gi/pygi-private.h	   |   55 +
 gi/pygi-repository.c	   |  238 ++++
 gi/pygi-repository.h	   |   39 +
 gi/pygi-struct.c	   |  175 +++
 gi/pygi-struct.h	   |   40 +
 gi/pygi-type.c		   |   96 ++
 gi/pygi-type.h		   |   43 +
 gi/pygi.h		   |   99 ++
 gi/pygobject-external.h   |   83 ++
 gi/repository/Makefile.am |	8 +
 gi/repository/__init__.py |   30 +
 gi/types.py		   |  163 +++
 tests/Makefile.am	   |   48 +
 tests/libtestgi.c	   | 3397
 +++++++++++++++++++++++++++++++++++++++++++++
 tests/libtestgi.h	   |  643 +++++++++
 tests/runtests.py	   |   22 +
 tests/test_gi.py	   | 1416 +++++++++++++++++++
 33 files changed, 11566 insertions(+), 0 deletions(-)

commit bfd3100a580b8bea9db25b8bb7443fb8c3dbe1cc
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Sat Nov 7 13:23:53 2009 +0100

    Fix girpository build setup

 configure.ac		  |   21 ++++++----
 girepository/Makefile.am |   13 +++---
 m4/introspection.m4	  |   92
 ++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 111 insertions(+), 15 deletions(-)

commit 421c03b1c5b69f90c778663df901b45ca3ee8ba5
Author: Simon van der Linden <svdlinden@src.gnome.org>
Date:	Fri Nov 6 19:17:36 2009 +0100

    Make GType.pytype aware of the interface, enum, flags, pointer and
    boxed wrappers

 gobject/pygtype.c |   39 +++++++++++++++++++++++++++++++++------
 1 files changed, 33 insertions(+), 6 deletions(-)

commit a9c168c58cc6a449b51653417bf3f58bdd41457c
Author: Philippe Normad <phil@base-art.net>
Date:	Wed Oct 21 18:01:16 2009 +0200

    pygmainloop: fix use of PySignal_WakeUpFD API for nested loops

    Fixes bug #481569

 glib/pygmainloop.c |	95
 +++++++++++++++++++++++++++------------------------
 1 files changed, 50 insertions(+), 45 deletions(-)

commit c6a5750379354c12e2599b3c73b4f9a23fd39114
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Sep 25 20:12:21 2009 +0200

    Post release version bump to 2.21.0

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 33920eb013628a5e22b7b32403fb965ae3210f47
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Sep 23 21:52:04 2009 +0200

    Update NEWS and release 2.20.0

 NEWS |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

commit 66b12f7d2f54143ea80b4f8aec863b26800363d6
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed Sep 23 21:51:43 2009 +0200

    Bump version to 2.20.0

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 7bf87338a026ac82f908aa5fddf2bfea2daf6617
Author: Brian Cameron <Brian.Cameron@sun.com>
Date:	Wed Sep 23 12:11:50 2009 -0500

    Updated uninstalled.pc file so that it contains the right paths for
    defsdir files and codegen files.  See bug #596023.

 pygobject-2.0-uninstalled.pc.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit d042402b7c649b2bed7f20038eb82518ec7cc9b3
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Tue Sep 22 22:02:27 2009 +0300

    Plug reference leak of GSource in pyg_main_loop_init()

    Bug #579406, second change.

 glib/pygmainloop.c |	 1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 640be8109d066e85ed77c810830a5f73c750415b
Author: Frédéric Péters <fpeters@0d.be>
Date:	Sun Aug 30 16:46:02 2009 +0200

    Specify programming language in .devhelp file

    This add a new language attribute (hardcoded to python) in the
    .devhelp
    file that is produced when using ref-html-style.xsl.

 docs/xsl/devhelp.xsl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit c888b5ca722fcad6a03de585606c677c2969ebd6
Author: Paolo Borelli <pborelli@gnome.org>
Date:	Thu Aug 13 21:32:07 2009 +0200

    Allow to use automake 1.11

 autogen.sh |	13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

commit 30deaba4bd1e199aab75cb346ee9237237807fbd
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Aug 11 22:19:50 2009 +0200

    Update README

 README |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

commit af165d350d0d1bb493be5140bf84376d3da1e4d8
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Aug 11 22:16:52 2009 +0200

    Update AUTHORS

 AUTHORS |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

commit 5f9f87f276b97964b525a501d8584ea8b4d8bfd2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Aug 11 22:11:43 2009 +0200

    Add myself and Paul as maintainers

 MAINTAINERS	|    8 ++++++++
 pygobject.doap |   14 ++++++++++++++
 2 files changed, 22 insertions(+), 0 deletions(-)

commit 3bfae47fbcb5523d91fb2d1ed7ea347eeddd1775
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Aug 11 20:52:44 2009 +0200

    Update NEWS release 2.19.0

 NEWS |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

commit e82a1841f31ad54dd50569d0d45290713409e0bf
Author: John Finlay <finlay@moeraki.com>
Date:	Tue Aug 11 00:04:31 2009 -0700

    Add macros to help with Python list to/from GList/GSList conversions.

 gobject/pygobject.h |	242
 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 241 insertions(+), 1 deletions(-)

commit f1fad96da2c531fbd3218923baa4fe806a2942d4
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Aug 8 21:37:54 2009 +0200

    Bug 590063 – GFileInfo.list_attributes should accept None/NULL

 gio/gfileinfo.override |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit b7907cf6ff6ccf8d38b5206f09f5c864c205e5de
Author: Johan Dahlin <johan@gnome.org>
Date:	Fri Jul 24 14:30:37 2009 -0300

    Remove myself as a maintainer

 MAINTAINERS	|    4 ----
 pygobject.doap |    7 -------
 2 files changed, 0 insertions(+), 11 deletions(-)

commit be6eb21320b4688bcfcd8cbea33f7be29a76f2a2
Author: John Finlay <finlay@moeraki.com>
Date:	Wed Jul 8 15:47:44 2009 -0700

	    * codegen/defsgen.py (clean_patterns): Strip out Windows
	    DLL API macros.

 codegen/defsgen.py |	 6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit 2214cad3529979e29342a7e1fdc2915b90ce9c10
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 23 21:18:23 2009 +0200

    Fix the gio.unix namespace in docs

 docs/Makefile.am			   |	2 ++
 docs/reference/pygio-classes.xml	   |	2 --
 docs/reference/pygio-unixinputstream.xml  |   26
 +++++++++++++-------------
 docs/reference/pygio-unixoutputstream.xml |   26
 +++++++++++++-------------
 docs/reference/pygiounix-classes.xml	   |   13 +++++++++++++
 docs/reference/pygobject-ref.xml	   |	1 +
 6 files changed, 42 insertions(+), 28 deletions(-)

commit c0acaedfe7f4e488a490e07e3184f0709e1fadc2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 22 23:13:36 2009 +0200

    Add docs for gio functions (mostly for content types)

 docs/Makefile.am		    |	 2 +
 docs/reference/pygio-classes.xml   |	 1 +
 docs/reference/pygio-functions.xml |  395
 ++++++++++++++++++++++++++++++++++++
 3 files changed, 398 insertions(+), 0 deletions(-)

commit ebddee47fb7f3e06f9e0a7a14b9532d5cf8a3881
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun Jun 21 18:35:56 2009 +0200

    Add docs for gio.Unix[In|Out]putStream classes

 docs/Makefile.am			   |	4 +
 docs/reference/pygio-classes.xml	   |	2 +
 docs/reference/pygio-unixinputstream.xml  |  202
 +++++++++++++++++++++++++++++
 docs/reference/pygio-unixoutputstream.xml |  202
 +++++++++++++++++++++++++++++
 4 files changed, 410 insertions(+), 0 deletions(-)

commit 5b71e58117c85634d95d08449eb54079b246e5be
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun Jun 21 16:50:03 2009 +0300

    Document that many functions got moved gobject -> glib

 docs/reference/pygobject-functions.xml |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

commit b270dc43f2cef5260b0bbc71356fd8e6a2b7f754
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jun 20 19:23:25 2009 +0200

    Add docs for class gio.DataOutputStream

 docs/Makefile.am			   |	2 +
 docs/reference/pygio-classes.xml	   |	1 +
 docs/reference/pygio-dataoutputstream.xml |  504
 +++++++++++++++++++++++++++++
 3 files changed, 507 insertions(+), 0 deletions(-)

commit 549313fc4886fa3deb31761de6f5400708165d86
Author: Murray Cumming <murrayc@murrayc.com>
Date:	Thu Jun 18 18:48:37 2009 +0200

    Allow h2def.py to work when there are tabs or multiple spaces after
    the struct keyword.

 codegen/h2def.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 5c36ef20dca8cd1793f2d3e88949675299097f40
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 15 23:02:34 2009 +0200

    Add dpcs for class gio.DataInputStream

 docs/Makefile.am			  |    2 +
 docs/reference/pygio-classes.xml	  |    1 +
 docs/reference/pygio-constants.xml	  |   66 +++
 docs/reference/pygio-datainputstream.xml |  799
 ++++++++++++++++++++++++++++++
 4 files changed, 868 insertions(+), 0 deletions(-)

commit a8b36c343c6850af929c1d5a930f923831b4e637
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:	Mon Jun 15 23:25:01 2009 +0300

    Fix build when builddir is not the same as srcdir

    Bug #585817.

 girepository/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 9d9ae97b8a49836ec1f3b8d6529bafe1cc06d4d7
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Mon Jun 15 23:19:47 2009 +0300

    Make gio.Emblem constructor new-style

    Add optional 'origin' parameter.  Expand gio.Emblem documentation and
    mark gio.emblem_new_with_origin as sort-of-deprecated.

 docs/reference/pygio-emblem.xml |   51
 +++++++++++++++++++++++++++++++++++++-
 gio/gio.defs			 |    5 ++-
 2 files changed, 52 insertions(+), 4 deletions(-)

commit 268e1681fd5b46e6412d3a8db84f3f1cb02fdbde
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jun 13 14:44:47 2009 +0200

    Add docs for gio.BufferedOutputStream class

 docs/Makefile.am			       |   96 +++++-----
 docs/reference/pygio-bufferedoutputstream.xml |  275
 +++++++++++++++++++++++++
 docs/reference/pygio-classes.xml	       |    1 +
 3 files changed, 325 insertions(+), 47 deletions(-)

commit a6e25aaa7c8f27d62f2917b06728d7ccfcd46416
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jun 13 14:38:34 2009 +0200

    Fix gio.BufferedInputStream docs

    Added the constructor reference and fixed a typo in properties header

 docs/reference/pygio-bufferedinputstream.xml |   34
 ++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 2 deletions(-)

commit a9b13b60a5aad726d7d7dd7fdc5153b1561fb591
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat Jun 13 01:25:06 2009 +0200

    Add docs for gio.BufferedInputStream

 docs/Makefile.am			      |    2 +
 docs/reference/pygio-bufferedinputstream.xml |  431
 ++++++++++++++++++++++++++
 docs/reference/pygio-classes.xml	      |    1 +
 3 files changed, 434 insertions(+), 0 deletions(-)

commit 7766daa59b0e2b85413cee368bf2ebd2afe198e1
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun May 31 18:25:47 2009 +0300

    Cleanup GIO overrides to use Python function/method names

    Also move several gio.Mount overrides over from 'gio.override' to
    existing 'gmount.override'.  Part of bug #584289.

 gio/gfile.override	      |   20 ++--
 gio/gfileenumerator.override |    6 +-
 gio/ginputstream.override    |    2 +-
 gio/gio.override	      |  204
 ------------------------------------------
 gio/gmount.override	      |  204
 ++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 218 insertions(+), 218 deletions(-)

commit 07e9c18dc092f6546230168b6b69c1b3454e120a
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun May 31 18:56:55 2009 +0300

    Make codegen report errors using Python function/method names

    Part of bug #584289.

 codegen/codegen.py	|    9 +++++----
 codegen/definitions.py |   10 +++++++++-
 2 files changed, 14 insertions(+), 5 deletions(-)

commit 235fde85d015382f2ba38b21968e82b3ac0b6612
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri Jun 12 00:12:17 2009 +0200

    Fix object type in gio.BufferedInputStream_fill_async

 gio/gbufferedinputstream.override |	2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 407b0e909056f15960e6a4e549896d786ce0a0b2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 9 00:08:21 2009 +0200

    Wrap gio.BufferedInputStream.fill_async

    Wrap the method gio.BufferedInputStream.fill_async and add a test

 gio/Makefile.am		   |	1 +
 gio/gbufferedinputstream.override |   70
 +++++++++++++++++++++++++++++++++++++
 gio/gio.override		   |	1 +
 tests/test_gio.py		   |   25 +++++++++++++
 4 files changed, 97 insertions(+), 0 deletions(-)

commit b7c96b41b287685fe57504e0add3a6f16e649975
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 8 15:42:40 2009 +0200

    Add gio.BufferedOutputStream which was forgotten in the types
    definition

 gio/gio-types.defs |	 7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

commit 3666f75af4ef2c8e038116aee5afada59d59f689
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 8 14:20:02 2009 +0200

    Add docs for gio.MemoryOutputStream

 docs/Makefile.am			     |	  2 +
 docs/reference/pygio-classes.xml	     |	  1 +
 docs/reference/pygio-memoryoutputstream.xml |	175
 +++++++++++++++++++++++++++
 3 files changed, 178 insertions(+), 0 deletions(-)

commit 6eb5e3988cbddb4afb3d5747364d6eb80370bb78
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 8 13:30:15 2009 +0200

    Split overrides for gio.MemoryOutputStream

 gio/Makefile.am		  |    1 +
 gio/gio.override		  |    1 +
 gio/gmemoryoutputstream.override |   45
 ++++++++++++++++++++++++++++++++++++++
 gio/goutputstream.override	  |   24 --------------------
 4 files changed, 47 insertions(+), 24 deletions(-)

commit dfbdf23633a772e78b47b0e7b0c3e3b87855d9ff
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 8 11:45:11 2009 +0200

    Wrap gio.memory_input_stream_new_from_data

    Add the wrapper for gio.memory_input_stream_new_from_data including
    docs and a test.

 docs/Makefile.am			    |	 4 +-
 docs/reference/pygio-classes.xml	    |	 1 +
 docs/reference/pygio-memoryinputstream.xml |  151
 ++++++++++++++++++++++++++++
 gio/Makefile.am			    |	 1 +
 gio/ginputstream.override		    |	34 ------
 gio/gio.override			    |	 1 +
 gio/gmemoryinputstream.override	    |	91 +++++++++++++++++
 tests/test_gio.py			    |	 4 +
 8 files changed, 252 insertions(+), 35 deletions(-)

commit fcc3cb0e167789746a1a9db0cba54ea7a97c7259
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Mon Jun 8 19:15:24 2009 +0200

    Fixes whitespaces style issues with girepository.

 girepository/Makefile.am	|    2 +-
 girepository/bank-repository.c |   67
 +++++++++++++++++++--------------------
 girepository/bank.h		|    2 +-
 girepository/btypes.py		|    6 ++--
 girepository/module.py		|    2 +-
 5 files changed, 39 insertions(+), 40 deletions(-)

commit fb4b2c8cdad2853e6bfe9526529e3a3ab052c5e0
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Fri Jun 5 19:03:59 2009 +0200

    Removes the header but the modeline in test_girepository.py.

 tests/test_girepository.py |	26 +-------------------------
 1 files changed, 1 insertions(+), 25 deletions(-)

commit abe4828f52c7eb3a08f5b592e7ced1e97a58ef5c
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Wed Jun 3 10:47:58 2009 +0200

    Adds overrides modules from PyBank.

 girepository/Makefile.am	    |	 3 +++
 girepository/importer.py	    |	 3 +--
 girepository/overrides/Gdk.py	    |	14 ++++++++++++++
 girepository/overrides/Gtk.py	    |	 8 ++++++++
 4 files changed, 26 insertions(+), 2 deletions(-)

commit c12964e6a3354d8063355225c94e6d21d621e08b
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Tue Jun 2 23:40:41 2009 +0200

    Disables the tests that fail in tests/test_girepository.py.

 tests/test_girepository.py |  242
 +++++++++++++++++++++++++++++++++-----------
 1 files changed, 182 insertions(+), 60 deletions(-)

commit a4469a3f7d32a25156bae5e7aef9ec4ae5f6e140
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Tue Jun 2 23:03:26 2009 +0200

    Imports test_girepository.py from former PyBank's
    everything_unittest.py.

 tests/test_girepository.py |  288
 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 288 insertions(+), 0 deletions(-)

commit e4f2a5ef8734cf40cf8345d442612db1f6c62d5a
Author: Simon van der Linden <simon.vanderlinden@student.uclouvain.be>
Date:	Thu May 28 17:45:11 2009 +0200

    Introduces the girepository module from the former PyBank.

 INSTALL			|   69 ++-
 Makefile.am			|    2 +-
 configure.ac			|   12 +
 girepository/Makefile.am	|   52 ++
 girepository/__init__.py	|   24 +
 girepository/bank-argument.c	|  379 +++++++++++++
 girepository/bank-info.c	| 1194
 ++++++++++++++++++++++++++++++++++++++++
 girepository/bank-repository.c |  237 ++++++++
 girepository/bank.c		|  155 ++++++
 girepository/bank.h		|   80 +++
 girepository/btypes.py		|  300 ++++++++++
 girepository/importer.py	|   52 ++
 girepository/module.py		|  224 ++++++++
 girepository/repository.py	|   51 ++
 14 files changed, 2799 insertions(+), 32 deletions(-)

commit f5ab5046fe9b67ec5e8fc64679e1a3d01787af7e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 18:28:22 2009 +0200

    Fix the docs for gio.FilterOutputStream

 docs/reference/pygio-filteroutputstream.xml |	  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit fded60d8376fc45d19bf6cd8be6b927cc3f2e8c6
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 18:27:00 2009 +0200

    Add gio.FilterOutputStream docs

 docs/Makefile.am			     |	  2 +
 docs/reference/pygio-classes.xml	     |	  1 +
 docs/reference/pygio-filteroutputstream.xml |	152
 +++++++++++++++++++++++++++
 3 files changed, 155 insertions(+), 0 deletions(-)

commit e2c31f916967229b6547e68013628ce0082cf875
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 13:29:59 2009 +0200

    Add gio.FilterInputStream docs

 docs/Makefile.am			    |	 2 +
 docs/reference/pygio-classes.xml	    |	 1 +
 docs/reference/pygio-filterinputstream.xml |  152
 ++++++++++++++++++++++++++++
 3 files changed, 155 insertions(+), 0 deletions(-)

commit 49a467eee445bc75554db0374006722ac075194b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 11:33:20 2009 +0200

    Add API appeared in 2.20 but not marked as such in gio docs

 gio/gio.defs |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

commit 180c157f2a20b7d2dd9af05bfb5f515fd23870a0
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 10:41:26 2009 +0200

    Wrap gio.FileOutputStream.query_info_async

    Add the wrapper for gio.FileOutputStream.query_info_async
    including docs and a test.

 docs/Makefile.am			   |	2 +
 docs/reference/pygio-classes.xml	   |	1 +
 docs/reference/pygio-fileoutputstream.xml |  257
 +++++++++++++++++++++++++++++
 gio/Makefile.am			   |	3 +-
 gio/gfileoutputstream.override		   |   68 ++++++++
 gio/gio.override			   |	1 +
 tests/test_gio.py			   |   27 +++
 7 files changed, 358 insertions(+), 1 deletions(-)

commit 4673577d1f6c3d54423808dd575987092fb05ad2
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue Jun 2 10:17:41 2009 +0200

    Fix gio.FileInputStream docs

    Add implemented interface section and remove a method description

 docs/reference/pygio-fileinputstream.xml |   25 +++++++++----------------
 1 files changed, 9 insertions(+), 16 deletions(-)

commit 1e1cad02879d514745b5233658654cbe944530a5
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 1 22:54:26 2009 +0200

    Fix the method name

 gio/gfileinputstream.override |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

commit f605811afe8c91f121e89b6f9ec28c70b62f4110
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon Jun 1 22:40:56 2009 +0200

    Wrap gio.FileInputStream.query_async

    Add the wrapper for gio.FileInputStream.query_async including docs and
    a test.

 docs/Makefile.am			  |    2 +
 docs/reference/pygio-classes.xml	  |    1 +
 docs/reference/pygio-fileinputstream.xml |  221
 ++++++++++++++++++++++++++++++
 gio/Makefile.am			  |    1 +
 gio/gfileinputstream.override		  |   68 +++++++++
 gio/gio.override			  |    1 +
 tests/test_gio.py			  |   27 ++++
 7 files changed, 321 insertions(+), 0 deletions(-)

commit 08623e54a426377c1504b5c364aabae5a17f8ad8
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sun May 31 17:43:16 2009 +0300

    Install executable codegen parts with executing permissions

    Also add shebang where it was missing.  Bug #583979.

 codegen/Makefile.am	  |   23 ++++++++++++-----------
 codegen/code-coverage.py |    2 ++
 codegen/codegen.py	  |    2 ++
 codegen/defsconvert.py   |    2 ++
 4 files changed, 18 insertions(+), 11 deletions(-)

commit 833d4da202bcfcb01a414f8aec4b751ec8e1ccb2
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sat May 30 16:57:49 2009 +0300

    Wrap gio.DataInputStream.read_line_async and read_until_async

    Wrap the functions and their corresponding *_finish() functions.
    Create 'gdatainputstream.override' for these and move two existing
    functions there.  Add unit tests.  Re-enable synchronous read_line
    unit test and adjust it for new official GIO behavior.  Bug #584285.

 gio/Makefile.am	       |    1 +
 gio/gdatainputstream.override |  250
 +++++++++++++++++++++++++++++++++++++++++
 gio/ginputstream.override     |   65 -----------
 gio/gio.defs		       |    4 +-
 gio/gio.override	       |    1 +
 tests/test_gio.py	       |   51 ++++++++-
 6 files changed, 300 insertions(+), 72 deletions(-)

commit 2cb569c0ced49f9ed5ca83292d5f15c837066688
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sat May 30 17:24:15 2009 +0300

    Fix gio.OutputStream.splice_async

    Bug #584290.

 gio/goutputstream.override |	 8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit e43fa429f6b4019a432acb481bbc07c8201cc46d
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Wed May 27 21:19:27 2009 +0300

    Code maintenance: ignore one more file created by unit tests

 tests/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 76e9dc74ac706a9207f9d31f887d6e38df2a678f
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon May 25 20:20:38 2009 +0200

    Update the docs with new 2.20 API

 docs/reference/pygio-appinfo.xml |  115 ++++++++++++++++++++++++++++
 docs/reference/pygio-icon.xml	  |   99 +++++++++++++++++++++++-
 docs/reference/pygio-mount.xml   |  156
 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 367 insertions(+), 3 deletions(-)

commit 8e40d71ac23deb7d91789486ee8cad440a6be1dd
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon May 25 01:33:08 2009 +0200

    Add gio 2.20 API

    add the new API added in gio 2.20, some needs to be wrapped manually

 gio/gio.defs  |  106
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 gio/unix.defs |   48 +++++++++++++++++++++----
 2 files changed, 146 insertions(+), 8 deletions(-)

commit 0d08df42514fba6abc896814abfee0d2d083c29e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon May 25 00:14:21 2009 +0200

    Post release version bump 2.19.0

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit edfb09e3de7baf294b3beba84b4ecb94e1f16764
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 24 23:56:29 2009 +0200

    Update NEWS, release 2.18.0

 NEWS	      |   14 ++++++++++++++
 configure.ac |    4 ++--
 2 files changed, 16 insertions(+), 2 deletions(-)

commit e0648ea435e0b309cdd5bb0ebe56d4534efd26e4
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 24 22:18:40 2009 +0200

    Add documentation for the gio.OutputStream class

    The docs for this class are not completed, missing methods
    descriptions.
    The index is complete though, it will be completed once all the
    classes
    are in place so we can ship a (almost) complete reference.

 docs/Makefile.am		       |    2 +
 docs/reference/pygio-classes.xml      |    3 +-
 docs/reference/pygio-outputstream.xml |  140
 +++++++++++++++++++++++++++++++++
 3 files changed, 144 insertions(+), 1 deletions(-)

commit 11524cdf6472d9115a812ce431f6767aec5627bc
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 24 22:12:04 2009 +0200

    Wrap gio.OutputStream.splice_async()

    wrap gio.OutputStream.splice_async() and add a test.

 gio/goutputstream.override |	58
 +++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gio.py	    |	20 +++++++++++++++
 2 files changed, 77 insertions(+), 1 deletions(-)

commit 82ad6b8c8ea4d6694126f5e0e67b826717e38f19
Author: Emilio Pozuelo Monfort <pochu@ubuntu.com>
Date:	Sun May 24 22:55:16 2009 +0300

    Add Python version into installed libpyglib name

    Do this now, while no-one (as far as we know) links to the library
    besides PyGObject itself.  Bug #550235.

 configure.ac	     |	  2 ++
 gio/Makefile.am     |	  2 +-
 glib/Makefile.am    |	 10 +++++-----
 gobject/Makefile.am |	  2 +-
 4 files changed, 9 insertions(+), 7 deletions(-)

commit 59da8cd24ea390b6c983995833ec6b0e5d028b35
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 24 11:44:24 2009 +0200

    Wrap gio.OutputStream.flush_async()

    wrap gio.OutputStream.flush_async() and add a test.

 gio/goutputstream.override |	47
 +++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gio.py	    |	11 ++++++++++
 2 files changed, 57 insertions(+), 1 deletions(-)

commit 84ab6178ed0033f69932df5bc73c86bdff80c953
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 17 17:29:37 2009 +0200

    Add documentation for the gio.FileMonitor class

    The docs for this class are not completed, missing methods
    descriptions.
    The index is complete though, it will be completed once all the
    classes
    are in place so we can ship a (almost) complete reference.

 docs/Makefile.am		      |    2 +
 docs/reference/pygio-classes.xml     |    1 +
 docs/reference/pygio-filemonitor.xml |  128
 ++++++++++++++++++++++++++++++++++
 3 files changed, 131 insertions(+), 0 deletions(-)

commit 629496a5617d30e4dfa494b05a62c85a6af77b9a
Author: Josselin Mouette <joss@malsain.org>
Date:	Sun May 17 18:03:44 2009 +0300

    Use 'Requires.private' for libffi in '.pc' files

    Correction for patch in bug #550231.

 pygobject-2.0-uninstalled.pc.in |    3 ++-
 pygobject-2.0.pc.in		 |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 90cd8b7c4a25cd2ecb751f8337b401c98538272b
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Wed May 13 21:54:39 2009 +0200

    Add wrapper for gio.FileAttributeMatcher

    added a boxed type for gio.FileAttributeMatcher which has been
    forgotten while
    wrapping the gio API. This should probably be done in gio itself.

 gio/gfileinfo.override |   24 ++++++++++++++++++++++--
 gio/gio-types.defs	|    7 +++++++
 gio/gio.override	|    2 ++
 3 files changed, 31 insertions(+), 2 deletions(-)

commit e707447d9313f2f2ecba395cfe3682d5a5e859f4
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Wed May 13 22:06:25 2009 +0300

    Mark relevant glib.IOChannel methods as METH_NOARGS

    Additionally fix glib.IOChannel.set_close_on_unref: was marked
    METH_NOARGS but actually accepted arguments.  Fixes bug #582427.

 glib/pygiochannel.c |	 83
 ++++++++++++--------------------------------------
 1 files changed, 20 insertions(+), 63 deletions(-)

commit 002915e5f458fec5a89766a54e8119a70a80caa7
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Tue May 12 20:37:24 2009 +0200

    Add documentation for the gio.FileInfo class

    The docs for this class are not completed, missing methods
    descriptions.
    The index is complete though, it will be completed once all the
    classes
    are in place so we can ship a (almost) complete reference.

 docs/Makefile.am		   |	2 +
 docs/reference/pygio-classes.xml  |	1 +
 docs/reference/pygio-fileinfo.xml |  346
 +++++++++++++++++++++++++++++++++++++
 3 files changed, 349 insertions(+), 0 deletions(-)

commit 8cd25c871609580425c6c4c9e5bc6ec8d40862a1
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sat May 9 16:46:04 2009 +0300

    Retire hand-written ChangeLog; autocreate from Git history

    Basically copied over from GLib source tree.

 ChangeLog	    | 3606
 ---------------------------------------------------
 ChangeLog.pre-2.18 | 3608
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am	    |	32 +
 3 files changed, 3640 insertions(+), 3606 deletions(-)

commit 23556bdbcf9cf06db866901fb822dd78a9043648
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat May 9 00:03:05 2009 +0200

    Fix a bug in InputStream.skip_async

    use the count argument instead of buffer_size which is always zero

 gio/ginputstream.override |	3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit ed6b06315c17441b41c001d38537c904b8fe18de
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat May 9 00:02:33 2009 +0200

    Add docs for the gio.InputStream class

 docs/Makefile.am		      |    2 +
 docs/reference/pygio-classes.xml     |    1 +
 docs/reference/pygio-inputstream.xml |  730
 ++++++++++++++++++++++++++++++++++
 3 files changed, 733 insertions(+), 0 deletions(-)

commit d58322b84d47da7905f95b43e9e0daf9f7c4b507
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Mon May 4 23:40:28 2009 +0200

    Wrap gio.InputStream.skip_async()

    wrap gio.InputStream.skip_async() and add a test.

 gio/ginputstream.override |   50
 ++++++++++++++++++++++++++++++++++++++++++++-
 tests/test_gio.py	   |   20 ++++++++++++++++++
 2 files changed, 69 insertions(+), 1 deletions(-)

commit 2311187824d1b48a996ee2620fd3c9a63e3edd66
Author: Siavash Safi <siavash@siavashs.org>
Date:	Mon May 4 15:46:49 2009 +0430

    Add -n --namespace option and the code to remove
    dll API in headers, Added documentation

    Patch from bug #579275

 ChangeLog	  |    8 +++
 codegen/h2def.py |  133
 ++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 117 insertions(+), 24 deletions(-)

commit 442ec5bb997bb7dab55baeea6e54e79d3ce0d3c1
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Sat May 2 23:54:52 2009 +0300

    Properly mark glib.get_user_special_dir() as a keywords method

    Fixes bug #581082.

 glib/glibmodule.c |	2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit f466dca880cc6ea68b9fe236943eea7a07d33520
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 3 11:03:25 2009 +0200

    Add docs for the gio.LoadableIcon class

 docs/Makefile.am		       |    2 +
 docs/reference/pygio-classes.xml      |    1 +
 docs/reference/pygio-loadableicon.xml |  198
 +++++++++++++++++++++++++++++++++
 3 files changed, 201 insertions(+), 0 deletions(-)

commit eab4ebf7f6c82580b61205f34e1cfe535aeada60
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sun May 3 01:21:55 2009 +0200

    Add docs for the gio.ThemedIcon class

 docs/Makefile.am		     |	  2 +
 docs/reference/pygio-classes.xml    |	  1 +
 docs/reference/pygio-themedicon.xml |	204
 +++++++++++++++++++++++++++++++++++
 3 files changed, 207 insertions(+), 0 deletions(-)

commit 22d7de8b620055f14b30f9c3c99160c8b4ebe672
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Sat May 2 12:25:19 2009 +0200

    post release version bump to 2.17.1

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 282ac3c76e1e3513bd76f819f320ec56aba15d9e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri May 1 23:40:31 2009 +0200

    Fix the class title

 docs/reference/pygio-mountoperation.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit d8b70dec1e5c09b73ae277f4f5b246315841fb8e
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Fri May 1 22:24:33 2009 +0200

    Add docs for the gio.MountOperation class

 docs/Makefile.am			 |    2 +
 docs/reference/pygio-classes.xml	 |    1 +
 docs/reference/pygio-constants.xml	 |  107 +++++
 docs/reference/pygio-mountoperation.xml |  726
 +++++++++++++++++++++++++++++++
 4 files changed, 836 insertions(+), 0 deletions(-)

commit fceea8e843e880f0469e454df23141e7dd2bc0cf
Author: Gian Mario Tagliaretti <gianmt@gnome.org>
Date:	Thu Apr 30 22:13:06 2009 +0200

    Update NEWS, release 2.17.0

 NEWS |   93
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 93 insertions(+), 0 deletions(-)

commit 47389217d1a65a8e3f404d486c508cf5d3164756
Author: Paul Pogonyshev <pogonyshev@gmx.net>
Date:	Thu Apr 30 22:47:19 2009 +0300

    Fix memory leak in gio.File.query_info_async()

    After the recent patch it would leak exception data if old argument
    order was used.  Properly decref the objects.

 gio/gfile.override |	 4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)